Exemple #1
0
 public DriveSpheroControlViewModel(ISpheroService spheroService)
 {
     this.spheroService = spheroService;
 }
 public LookingForSpheroControlViewModel(ISpheroService spheroService)
 {
   this.spheroService = spheroService;
   this.lookForSpheroCommand = new AlwaysExecuteCommand(this.LookForSphero);
   this.LookForSphero();
 }
 public DriveSpheroControlViewModel(ISpheroService spheroService)
 {
   this.spheroService = spheroService;
 }
 public MainUIControlViewModel(ISpheroService spheroService)
 {
     this.spheroService = spheroService;
     this.spheroService.SpheroConnectionChanged += OnSpheroConnectionStateChanged;
 }
 public LookingForSpheroControlViewModel(ISpheroService spheroService)
 {
     this.spheroService        = spheroService;
     this.lookForSpheroCommand = new AlwaysExecuteCommand(this.LookForSphero);
     this.LookForSphero();
 }
 public MainUIControlViewModel(ISpheroService spheroService)
 {
   this.spheroService = spheroService;
   this.spheroService.SpheroConnectionChanged += OnSpheroConnectionStateChanged;
 }