public async Task <RootObject> WeatherAsyncNow(string location, int duration)
        {
            var forecastWeather = await _weatherClient.GetForecastedWeaterDataAsync(location, duration);

            return(forecastWeather);
        }