Example #1
0
 public async Task<CommandResult> GetForecastWeather(string location)
 {
     var result = await _weatherClient.GetForecastWeatherByLocation(location, _httpContextAccessor.HttpContext.RequestAborted);
     return new CommandResult(result);
 }