public List <GuideCityDto> GetAllCities()
        {
            var model = _iGuideCityService.GetAllGuideCities(CurrentLanguage);

            if (model.Any())
            {
                return(model);
            }
            throw new HttpResponseException(NotFoundMessage(CityAndTown.CityNotExist));
        }