public ForecastController(IWeatherDashboardService _weatherDashboardService)
 {
     weatherDashboardService = _weatherDashboardService;
 }
 public WeatherProviderController(IWeatherDashboardService _weatherDashboardService)
 {
     weatherDashboardService = _weatherDashboardService;
 }
Esempio n. 3
0
 public CityController(IWeatherDashboardService _weatherDashboardService)
 {
     weatherDashboardService = _weatherDashboardService;
 }