public IActionResult PostSchedulesPricing([FromBody] SchedulesPricing schedulesPricing)
        {
            _serviceEndPoint = new ServicesEndPoint.GeneralSevices.ServicesEndPoint(_simbaToursUnitOfWork, _emailService);
            bool result = _serviceEndPoint.PostSchedulesPricing(schedulesPricing);

            return(Json(new { Result = result }));
        }