public GetFltSendAppMessageContentServiceBll(IFltOrderDal fltOrderDal, IFltRetModApplyDal fltRetModApplyDal,
                                                     IFltModOrderDal fltModOrderDal, IFltRefundOrderDal fltRefundOrderDal,
                                                     IFltPassengerDal fltPassengerDal, IFltFlightDal fltFlightDal, IAirPortDal airPortDal)
        {
            _fltOrderDal     = fltOrderDal;
            _fltPassengerDal = fltPassengerDal;
            _fltFlightDal    = fltFlightDal;
            _airPortDal      = airPortDal;

            _fltRetModApplyDal = fltRetModApplyDal;
            _fltModOrderDal    = fltModOrderDal;
            _fltRefundOrderDal = fltRefundOrderDal;
        }
예제 #2
0
 public GetFlighRefundOrderBll(IFltRefundOrderDal fltRefundOrderDal,
                               IFltRefundOrderDetailDal fltRefundOrderDetailDal) : base()
 {
     _fltRefundOrderDal       = fltRefundOrderDal;
     _fltRefundOrderDetailDal = fltRefundOrderDetailDal;
 }