public async void TestGetAll() { var weatherForecasts = await _weatherForecastApplicationService.GetAllAsync(); Assert.NotNull(weatherForecasts); Assert.Equal(3, weatherForecasts.Count); }
public async Task <IEnumerable <WeatherForecastDto> > WeatherForecasts() { return(await _weatherForecastApplicationService.GetAllAsync()); }