Пример #1
0
 public RemoteController(ISettingsService service, IYamahaService yamahaService, IPanodraService pandoraService, ISmartHouseService smartHouseService, IMPDService mpdService, ITVService tvService, ILastFMService lastFMService)
     : base(service)
 {
     YamahaService     = yamahaService;
     PandoraService    = pandoraService;
     SmartHouseService = smartHouseService;
     MpdService        = mpdService;
     TVService         = tvService;
     LastFMService     = lastFMService;
 }
Пример #2
0
 public RemoteController(ISettingsService service, IYamahaService yamahaService, IPlayerFactoryService playerService, ISmartHouseService smartHouseService, IMPDService mpdService, ITVService tvService, ILastFMService lastFMService, IRabbitMqService rabbitMqService)
     : base(service, rabbitMqService)
 {
     YamahaService     = yamahaService;
     PlayerService     = playerService;
     SmartHouseService = smartHouseService;
     MpdService        = mpdService;
     TVService         = tvService;
     LastFMService     = lastFMService;
 }
Пример #3
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;
 }
Пример #4
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;
 }
Пример #5
0
 public YamahaController(ISettingsService service, IYamahaService yamahaService) : base(service)
 {
     YamahaService = yamahaService;
 }