using Microsoft.AspNetCore.Mvc; using WeatherDashboard.Web.Services; namespace WeatherDashboard.Web.Controllers { [ApiController] [Route("api")] public class ApiController : Controller { private readonly IForecastService forecastService; public ApiController(IForecastService forecastService) => this.forecastService = forecastService; public Task Get() => forecastService.GetWeatherAsync(); } }