// fetch by Primary key into current object // links: // crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete // docLink: http://sql2x.org/documentationLink/fdcc33b4-08f1-43c3-ae28-95fbf029c3bd // parameters: // CrudeBookingFlightSegmentData: primary key of table CrudeBookingFlightSegmentData public CrudeBookingFlightSegmentModel FetchByBookingFlightSegmentId(System.Guid bookingFlightSegmentId) { var dataAccessLayer = new CrudeBookingFlightSegmentData(); var model = new CrudeBookingFlightSegmentModel(); dataAccessLayer.FetchByBookingFlightSegmentId(bookingFlightSegmentId); DataToModel(dataAccessLayer, model); return(model); }
// fetch by Primary key into current object // links: // crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete // docLink: http://sql2x.org/documentationLink/bbab4791-c9e7-49bf-90d5-fca19b1fedaa // parameters: // bookingFlightSegmentId: primary key of table booking_flight_segment public CrudeBookingFlightSegmentContract FetchByBookingFlightSegmentId(System.Guid bookingFlightSegmentId) { var dataAccessLayer = new CrudeBookingFlightSegmentData(); var contract = new CrudeBookingFlightSegmentContract(); dataAccessLayer.FetchByBookingFlightSegmentId(bookingFlightSegmentId); DataToContract(dataAccessLayer, contract); return(contract); }