public WeatherController(IWeatherService weatherService)
 {
     _weatherService = weatherService;
     if (!_weatherService.HasItems())
     {
         _weatherService.AddItems();
     }
 }