Пример #1
0
 public SmartHouseController(ISettingsService settingsService, IYamahaService yamahaService, IPanodraService pandoraService, ISmartHouseService smartHouseService, IMPDService mpdService, ITVService tvService, ITelemetryService telemetryService, ISmartBulbService smartBulbService, ISunriseSunsetService sunriseSunsetService)
     : base(settingsService)
 {
     _yamahaService        = yamahaService;
     _pandoraService       = pandoraService;
     _smartHouseService    = smartHouseService;
     _mpdService           = mpdService;
     _tvService            = tvService;
     _telemetryService     = telemetryService;
     _smartBulbService     = smartBulbService;
     _sunriseSunsetService = sunriseSunsetService;
 }
Пример #2
0
 public SmartHouseController(ISettingsService settingsService, IYamahaService yamahaService, IPlayerFactoryService playerService, ISmartHouseService smartHouseService, IMPDService mpdService, ITVService tvService, ITelemetryService telemetryService, ISmartBulbService smartBulbService, ISunriseSunsetService sunriseSunsetService, IRabbitMqService rabbitMqService)
     : base(settingsService, rabbitMqService)
 {
     _yamahaService        = yamahaService;
     _playerService        = playerService;
     _smartHouseService    = smartHouseService;
     _mpdService           = mpdService;
     _tvService            = tvService;
     _telemetryService     = telemetryService;
     _smartBulbService     = smartBulbService;
     _sunriseSunsetService = sunriseSunsetService;
 }
Пример #3
0
 public SmartBlubController(ISettingsService service, ISmartBulbService smartBulbService, IRabbitMqService rabbitMqService) : base(service, rabbitMqService)
 {
     _smartBulbService = smartBulbService;
 }