public async Task AddAsync(AddCityRequestCommand command)
        {
            try
            {
                var cityRequestEntity = new CityRequestEntity(command.CityName);
                if (!cityRequestEntity.IsValid())
                {
                    _logger.LogInformation(CityWeatherLogConstants.ADD_CITY_WEATHER_ERROR, cityRequestEntity.CityName);
                    return;
                }

                await _cityRepository.AddAsync(cityRequestEntity);
            }
            catch (Exception error)
            {
                _logger.LogError(error, error.Message);
            }
        }
        public async Task AddAsync(CityRequestEntity cityRequestEntity)
        {
            await _context.CitiesRequests.AddAsync(cityRequestEntity);

            await _context.SaveChangesAsync();
        }