コード例 #1
0
ファイル: CityInfo.cs プロジェクト: lemosf-ppb/feup-cmov
        public async Task OnLoadWeatherForecast()
        {
            WeatherForecast = await WeatherApi.GetWeatherForecast(Name);

            WeatherNow = await WeatherApi.GetWeatherNow(Name);

            OnCalculateWeatherByDays();
        }