Exemplo n.º 1
0
 public ProbeMonitorService(
     IProbeService <TKey> probeService,
     SuplaClientService <TKey> suplaClientService,
     BleboxSensorClientService <TKey> bleboxSensorClientService)
 {
     this.probeService              = probeService;
     this.suplaClientService        = suplaClientService;
     this.bleboxSensorClientService = bleboxSensorClientService;
 }
Exemplo n.º 2
0
 public ProbeCalculator(IMovementsService movementsService, IProbeService probeService)
 {
     this.movementsService = movementsService;
     this.probeService     = probeService;
 }
Exemplo n.º 3
0
 public AirProbeController(IProbeService <ObjectId> probeService, IKeyService <ObjectId> keyService)
     : base(probeService, keyService)
 {
     this.probeService = probeService;
     this.keyService   = keyService;
 }
Exemplo n.º 4
0
 public DevicesController(IDeviceService deviceService, IMovementsService movementsService, IProbeService probeService)
 {
     this.deviceService    = deviceService;
     this.movementsService = movementsService;
     this.probeService     = probeService;
 }