public ForecastController(IWeatherDashboardService _weatherDashboardService)
 {
     weatherDashboardService = _weatherDashboardService;
 }
 public WeatherProviderController(IWeatherDashboardService _weatherDashboardService)
 {
     weatherDashboardService = _weatherDashboardService;
 }
Example #3
0
 public CityController(IWeatherDashboardService _weatherDashboardService)
 {
     weatherDashboardService = _weatherDashboardService;
 }