Ejemplo n.º 1
0
        public CrudeBookingFlightSegmentModel CrudeBookingFlightSegmentFetchByBookingFlightSegmentId(System.Guid bookingflightsegmentid)
        {
            CrudeBookingFlightSegmentModel bookingFlightSegment =
                new CrudeBookingFlightSegmentBusiness().FetchByBookingFlightSegmentId(bookingflightsegmentid);

            return(bookingFlightSegment);
        }
Ejemplo n.º 2
0
        public IEnumerable <CrudeBookingFlightSegmentModel> CrudeBookingFlightSegmentFetchAll()
        {
            List <CrudeBookingFlightSegmentModel> bookingFlightSegments =
                new CrudeBookingFlightSegmentBusiness().FetchAll();

            return(bookingFlightSegments);
        }
Ejemplo n.º 3
0
        public IEnumerable <CrudeBookingFlightSegmentModel> CrudeBookingFlightSegmentFetchByFlightSegmentId(System.Guid flightsegmentid)
        {
            List <CrudeBookingFlightSegmentModel> bookingFlightSegment =
                new CrudeBookingFlightSegmentBusiness().FetchByFlightSegmentId(flightsegmentid);

            return(bookingFlightSegment);
        }
Ejemplo n.º 4
0
        public IEnumerable <CrudeBookingFlightSegmentModel> CrudeBookingFlightSegmentFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeBookingFlightSegmentModel> bookingFlightSegments =
                new CrudeBookingFlightSegmentBusiness().FetchAllWithLimit(limit);

            return(bookingFlightSegments);
        }