Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 5
0
 protected BaseController(string token)
 {
     _service = new SmartHouseService(token);
 }
Ejemplo n.º 6
0
 public SmartHouseController(ISmartHouseService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }