Beispiel #1
0
        public async Task <ActionResult> GetCurrent(string city)
        {
            var result = await weatherForecastRepository.GetCurrentWeather(city);

            return(Ok(result));
        }