示例#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));
 }