P Chandra Shekar has been in the workforce since 2006, starting as a Production Support Engineer at DSL Software. In 2008, they moved to ePower,Inc as a Placement Coordinator. From 2011 to 2015, they were a Senior Recruiter at Spearwave Marketing Solutions. P then became a Sr IT Recruiter at Mindsor from 2015 to 2018 before transitioning to Cygnus Professionals Inc. in the same role. Currently, they are a Business Development Manager at TEKenergy llc.
package com.example.moviedb.ui.base
import androidx.lifecycle.ViewModel
import io.reactivex.disposables.CompositeDisposable
open class BaseViewModel : ViewModel() {
protected val compositeDisposable = CompositeDisposable()
override fun onCleared() {
compositeDisposable.clear()
super.onCleared()
}
}
Sign up to view 0 direct reports
Get started
This person is not in any teams