Beispiel #1
0
 public CarrierMgr(ICarrierDao entityDao,
                   IAddressMgr addressMgr,
                   IWorkCenterMgr workCenterMgr,
                   ICriteriaMgr criteriaMgr,
                   IPermissionMgr permissionMgr,
                   IPermissionCategoryMgr permissionCategoryMgr,
                   IUserPermissionMgr userPermissionMgr,
                   IPartyDao partyDao,
                   IUserMgr userMgr,
                   ISqlHelperDao sqlHelperDao)
     : base(entityDao)
 {
     this.addressMgr            = addressMgr;
     this.workCenterMgr         = workCenterMgr;
     this.criteriaMgr           = criteriaMgr;
     this.permissionMgr         = permissionMgr;
     this.permissionCategoryMgr = permissionCategoryMgr;
     this.userPermissionMgr     = userPermissionMgr;
     this.userMgr      = userMgr;
     this.partyDao     = partyDao;
     this.sqlHelperDao = sqlHelperDao;
 }
Beispiel #2
0
 public CarrierMgr(ICarrierDao entityDao,
     IAddressMgr addressMgr,
     IWorkCenterMgr workCenterMgr,
     ICriteriaMgr criteriaMgr,
     IPermissionMgr permissionMgr,
     IPermissionCategoryMgr permissionCategoryMgr,
     IUserPermissionMgr userPermissionMgr,
     IPartyDao partyDao,
     IUserMgr userMgr,
     ISqlHelperDao sqlHelperDao)
     : base(entityDao)
 {
     this.addressMgr = addressMgr;
     this.workCenterMgr = workCenterMgr;
     this.criteriaMgr = criteriaMgr;
     this.permissionMgr = permissionMgr;
     this.permissionCategoryMgr = permissionCategoryMgr;
     this.userPermissionMgr = userPermissionMgr;
     this.userMgr = userMgr;
     this.partyDao = partyDao;
     this.sqlHelperDao = sqlHelperDao;
 }
 public CarrierBaseMgr(ICarrierDao entityDao)
 {
     this.entityDao = entityDao;
 }
Beispiel #4
0
 public CarrierProcessDb()
 {
     _carrierDao = DaoFactory.GetCarrierDao();
 }
Beispiel #5
0
 public CarrierBaseMgr(ICarrierDao entityDao)
 {
     this.entityDao = entityDao;
 }