public JsonResult GetHotelPricingById(int hotelPricingId)
        {
            _serviceEndPoint = new ServicesEndPoint.GeneralSevices.ServicesEndPoint(_simbaToursUnitOfWork, _emailService);
            HotelPricing result = _serviceEndPoint.GetHotelPricingById(hotelPricingId);

            return(Json(result));
        }