public BookingEvent GetBookingEventById(long id)
        {
            BookingEvent e = EventRepo.Query(a => a.Id == id).FirstOrDefault();

            EventRepo.LoadIfNot(e.Schedules);

            return(e);
        }