예제 #1
0
        public async Task GetForecastById()
        {
            int id = GetRouteValue <int>("id");

            await Ok(forecastService.GetById(id));
        }