예제 #1
0
 public DateController(IWeatherStationCrud service)
 {
     _service = service;
 }
예제 #2
0
 public BoundaryDatesController(IWeatherStationCrud service)
 {
     _servicesForecast = service;
 }
예제 #3
0
 public NewestController(IWeatherStationCrud service)
 {
     _service = service;
 }
예제 #4
0
 public WeatherForecastsController(IWeatherStationCrud service, IHubContext <Updates> hubContext)
 {
     _hubContext = hubContext;
     _service    = service;
 }