Пример #1
0
 public NoticeOrderConsumedFacadeService(
     NoticeOrderConsumedService noticeOrderConsumedService,
     CtripGateway ctripGateway,
     TongChengGateway tongChengGateway)
 {
     _noticeOrderConsumedService = noticeOrderConsumedService;
     _ctripGateway     = ctripGateway;
     _tongChengGateway = tongChengGateway;
 }
Пример #2
0
 public OrderTravelNoticeFacadeService(
     OrderTravelNoticeService orderTravelNoticeService,
     OrderDetailService orderDetailService,
     CtripGateway ctripGateway)
 {
     _orderTravelNoticeService = orderTravelNoticeService;
     _orderDetailService       = orderDetailService;
     _ctripGateway             = ctripGateway;
 }
 public CtripFacadeService(
     CtripGateway ctripGateway)
 {
     _ctripGateway  = ctripGateway;
     _ticketGateway = new TicketGateway(OtaType.Ctrip);
 }