public IEnumerable <ThreeDayForecast> GetThreeDayForecast()
        {
            var weather = new WeatherModel(_context);

            return(weather.GetThreeDayForecast());
        }