1 instantiation of WeatherForecast
HostedBlazorWebassemblyApp.Server (1)
Data\WeatherForecastService.cs (1)
21
return Task.FromResult(Enumerable.Range(1, 5).Select(index => new
WeatherForecast
5 references to WeatherForecast
HostedBlazorWebassemblyApp.Client (2)
Data\HttpWeatherForecastService.cs (2)
23
public async Task<
WeatherForecast
[]> GetForecastAsync(DateTime startDate)
25
return (await Client.GetFromJsonAsync<
WeatherForecast
[]>("WeatherForecast"))!;
HostedBlazorWebassemblyApp.Server (2)
Controllers\WeatherForecastController.cs (1)
26
public Task<
WeatherForecast
[]> Get()
Data\WeatherForecastService.cs (1)
19
public Task<
WeatherForecast
[]> GetForecastAsync(DateTime startDate)
HostedBlazorWebassemblyApp.Shared (1)
IWeatherForecastService.cs (1)
14
Task<
WeatherForecast
[]> GetForecastAsync(DateTime startDate);