1 implementation of IWeatherForecastService
HostedBlazorWebassemblyApp.Server (1)
Data\WeatherForecastService.cs (1)
12
public class WeatherForecastService :
IWeatherForecastService
3 references to IWeatherForecastService
HostedBlazorWebassemblyApp.Server (3)
Controllers\WeatherForecastController.cs (2)
16
private readonly
IWeatherForecastService
_forecastService;
19
public WeatherForecastController(ILogger<WeatherForecastController> logger,
IWeatherForecastService
forecastService)
Startup.cs (1)
33
services.AddSingleton<
IWeatherForecastService
, WeatherForecastService>();