public async Task <IActionResult> Search([FromQuery] string location) { var weatherResult = await weatherClient.GetWeatherBy(location); return(Ok(weatherResult)); }