コード例 #1
0
        static async Task Main(string[] args)
        {
            try
            {
                ConfigHelper.InitializeConfig();
                var weatherService = new OpenWeatherService();

                var historyService = new HistoryLocationService();
                var history        = historyService.GetSavedLocations();

                Console.WriteLine("Please enter the name of a city and iso country code separated by a comma, example : Perth, AU");
                DisplayHistory(history);
                var    input = Console.ReadLine().Trim();
                string city;
                string country;
                ValidateInput(input, history, out city, out country);
                var currentWeather = await weatherService.GetCurrentWeather(city.Trim(' '), country?.Trim(' ').ToUpper());

                Console.WriteLine(currentWeather);
                while (currentWeather.Contains("We couldn't find"))
                {
                    Console.WriteLine("Please enter another city name or a number from the list.");
                    input = Console.ReadLine();
                    ValidateInput(input, history, out city, out country);
                    currentWeather = await weatherService.GetCurrentWeather(city.Trim(' '), country?.Trim(' ').ToUpper());
                }
                Console.WriteLine(currentWeather);
                Console.ReadLine();
            }
            catch (Exception ex)
            {
                logger.Error(ex);
            }
        }
コード例 #2
0
 public OpenWeatherService()
 {
     config         = ConfigHelper.GetConfigAs <OpenWeatherConfig>("OpenWeatherAPI");
     historyService = new HistoryLocationService();
 }