public static string getForecastURL(City city) { return(String.Format( "{0}forecast?q={1},pt&units=metric&{2}", Endpoint, city.getName(), Key )); }
public static string getWeatherURL(City city) { return(String.Format( "{0}weather?q={1},pt&units=metric&{2}", Endpoint, city.getName(), Key )); }