public async Task <ActionResult> AddToFavorites(City city)
        {
            await _weatherService.AddToFavorites(city);

            return(Ok());
        }