Exemplo n.º 1
0
 public DateController(IWeatherStationCrud service)
 {
     _service = service;
 }
Exemplo n.º 2
0
 public BoundaryDatesController(IWeatherStationCrud service)
 {
     _servicesForecast = service;
 }
Exemplo n.º 3
0
 public NewestController(IWeatherStationCrud service)
 {
     _service = service;
 }
Exemplo n.º 4
0
 public WeatherForecastsController(IWeatherStationCrud service, IHubContext <Updates> hubContext)
 {
     _hubContext = hubContext;
     _service    = service;
 }