public IActionResult WeatherForecasts()
        {
            var lstWeatherForecast = _globalService.GetWeatherForecastsAsync();

            return(new ObjectResult(lstWeatherForecast));
        }