public TransportationBillMgr(ITransportationBillDao entityDao,
     ITransportationBillDetailMgr transportationBillDetailMgr,
     ITransportationActBillMgr transportationActBillMgr,
     INumberControlMgr numberControlMgr,
     IUserMgr userMgr)
     : base(entityDao)
 {
     this.transportationBillDetailMgr = transportationBillDetailMgr;
     this.transportationActBillMgr = transportationActBillMgr;
     this.numberControlMgr = numberControlMgr;
     this.userMgr = userMgr;
 }
 public TransportationBillMgr(ITransportationBillDao entityDao,
                              ITransportationBillDetailMgr transportationBillDetailMgr,
                              ITransportationActBillMgr transportationActBillMgr,
                              INumberControlMgr numberControlMgr,
                              IUserMgr userMgr)
     : base(entityDao)
 {
     this.transportationBillDetailMgr = transportationBillDetailMgr;
     this.transportationActBillMgr    = transportationActBillMgr;
     this.numberControlMgr            = numberControlMgr;
     this.userMgr = userMgr;
 }
 public TransportationBillBaseMgr(ITransportationBillDao entityDao)
 {
     this.entityDao = entityDao;
 }
示例#4
0
 public TransportationBillBaseMgr(ITransportationBillDao entityDao)
 {
     this.entityDao = entityDao;
 }