예제 #1
0
        public CrudeBookingEventModel CrudeBookingEventFetchByBookingEventId(System.Guid bookingeventid)
        {
            CrudeBookingEventModel bookingEvent =
                new CrudeBookingEventBusiness().FetchByBookingEventId(bookingeventid);

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

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

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

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

            return(bookingEvents);
        }