public CrudeBookingEventModel CrudeBookingEventFetchByBookingEventId(System.Guid bookingeventid)
        {
            CrudeBookingEventModel bookingEvent =
                new CrudeBookingEventBusiness().FetchByBookingEventId(bookingeventid);

            return(bookingEvent);
        }
        public IEnumerable <CrudeBookingEventModel> CrudeBookingEventFetchByBookingEventTypeRcd(System.String bookingeventtypercd)
        {
            List <CrudeBookingEventModel> bookingEvent =
                new CrudeBookingEventBusiness().FetchByBookingEventTypeRcd(bookingeventtypercd);

            return(bookingEvent);
        }
        public IEnumerable <CrudeBookingEventModel> CrudeBookingEventFetchAll()
        {
            List <CrudeBookingEventModel> bookingEvents =
                new CrudeBookingEventBusiness().FetchAll();

            return(bookingEvents);
        }
        public IEnumerable <CrudeBookingEventModel> CrudeBookingEventFetchByBookingId(System.Guid bookingid)
        {
            List <CrudeBookingEventModel> bookingEvent =
                new CrudeBookingEventBusiness().FetchByBookingId(bookingid);

            return(bookingEvent);
        }
        public IEnumerable <CrudeBookingEventModel> CrudeBookingEventFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeBookingEventModel> bookingEvents =
                new CrudeBookingEventBusiness().FetchAllWithLimit(limit);

            return(bookingEvents);
        }