Пример #1
0
 public List <string> GetWeatherUpdate(string Country, string City)
 {
     ws = new Models.WeatherUpdateService();
     return(ws.GetWeatherUpdate(Country, City));
 }
Пример #2
0
 public List <Cities> GetCityList(string Country)
 {
     ws = new Models.WeatherUpdateService();
     return(ws.GetCityListbyCountry(Country));
 }