public GuideCityDto GetCityById(int id)
        {
            var model = _iGuideCityService.GetGuideCityById(CurrentLanguage, id);

            if (model != null)
            {
                return(model);
            }
            throw new HttpResponseException(NotFoundMessage(CityAndTown.CityNotExist));
        }