public CityController(GlobalWeatherService.GlobalWeatherSoap client)
 {
     _client = client;
 }
 public HomeController(GlobalWeatherService.GlobalWeatherSoap client, IWeatherMapService weatherMapService, ICountryService countryService)
 {
     _client            = client;
     _weatherMapService = weatherMapService;
     _countryService    = countryService;
 }