private static async Task Test() { ForeCast foreCast = await ForecastService.ForecastRunAsync(); ShowProduct(foreCast); Console.ReadLine(); }
private async Task GetForecast() { ForeCast foreCast = await ForecastService.ForecastRunAsync().ConfigureAwait(false); var WeatherText = new WeatherText(foreCast); ShowProduct(foreCast); }