Exemplo n.º 1
0
 public PartyMgr(IPartyDao entityDao, ICriteriaMgr criteriaMgr, IRegionMgr RegionMgr, ISupplierMgr SupplierMgr, ICustomerMgr CustomerMgr, ICarrierMgr CarrierMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.RegionMgr   = RegionMgr;
     this.SupplierMgr = SupplierMgr;
     this.CustomerMgr = CustomerMgr;
     this.CarrierMgr  = CarrierMgr;
 }
Exemplo n.º 2
0
 public PartyMgr(IPartyDao entityDao, ICriteriaMgr criteriaMgr, IRegionMgr RegionMgr, ISupplierMgr SupplierMgr, ICustomerMgr CustomerMgr, ICarrierMgr CarrierMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.RegionMgr = RegionMgr;
     this.SupplierMgr = SupplierMgr;
     this.CustomerMgr = CustomerMgr;
     this.CarrierMgr = CarrierMgr;
 }
Exemplo n.º 3
0
 public RegionMgr(IRegionDao entityDao,
                  ICriteriaMgr criteriaMgr,
                  IWorkCenterMgr workCenterMgr,
                  IAddressMgr addressMgr,
                  IPermissionMgr permissionMgr,
                  IPermissionCategoryMgr permissionCategoryMgr,
                  IUserPermissionMgr userPermissionMgr,
                  IUserMgr userMgr,
                  IPartyDao partyDao,
                  ISqlHelperDao sqlHelperDao)
     : base(entityDao)
 {
     this.criteriaMgr           = criteriaMgr;
     this.workCenterMgr         = workCenterMgr;
     this.addressMgr            = addressMgr;
     this.permissionMgr         = permissionMgr;
     this.permissionCategoryMgr = permissionCategoryMgr;
     this.userPermissionMgr     = userPermissionMgr;
     this.userMgr      = userMgr;
     this.partyDao     = partyDao;
     this.sqlHelperDao = sqlHelperDao;
 }
Exemplo n.º 4
0
 public RegionMgr(IRegionDao entityDao,
     ICriteriaMgr criteriaMgr,
     IWorkCenterMgr workCenterMgr,
     IAddressMgr addressMgr,
     IPermissionMgr permissionMgr,
     IPermissionCategoryMgr permissionCategoryMgr,
     IUserPermissionMgr userPermissionMgr,
     IUserMgr userMgr,
     IPartyDao partyDao,
     ISqlHelperDao sqlHelperDao)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.workCenterMgr = workCenterMgr;
     this.addressMgr = addressMgr;
     this.permissionMgr = permissionMgr;
     this.permissionCategoryMgr = permissionCategoryMgr;
     this.userPermissionMgr = userPermissionMgr;
     this.userMgr = userMgr;
     this.partyDao = partyDao;
     this.sqlHelperDao = sqlHelperDao;
 }
Exemplo n.º 5
0
 public PartyBaseMgr(IPartyDao entityDao)
 {
     this.entityDao = entityDao;
 }
Exemplo n.º 6
0
 public PartyBaseMgr(IPartyDao entityDao)
 {
     this.entityDao = entityDao;
 }
Exemplo n.º 7
0
 public PartyLogic(string connection_string)
 {
     this.connection_string = connection_string;
     party_dao = new PartyDao(connection_string);
 }