Пример #1
0
 private void GetOpenWeaterDetails()
 {
     appId = ConfigurationManager.AppSettings["OpenWeather"];
     OpenWeather _weather = new OpenWeather(appId, SelectedCity.Name);
     string url = _weather.BuildUrl();
     OpenWeatherDetails weatherDetails = _weather.GetOpenWeatherDetails(url);
     _weatherDetails = weatherDetails;
     LoadOpenWeatherDates(weatherDetails);
 }