public void OnServiceConnected(ComponentName name, IBinder service)
 {
     Binder      = service as GovAppServiceBinder;
     IsConnected = Binder != null;
 }
 public void OnServiceDisconnected(ComponentName name)
 {
     IsConnected = false;
     Binder      = null;
 }
        public GovAppServiceConnection(MainActivity activity)
        {
            IsConnected = false;

            Binder = null;
        }