public CurrentConditions GetCurrentConditions(int id)
        {
            // Id is irrelevant here, just used to separate get conditions and get forecast
            var weather = new WeatherModel(_context);

            return(weather.GetCurrentConditions());
        }