示例#1
0
 public ItemFlowPlanDetailMgr(
     IItemFlowPlanDetailDao entityDao,
     ICriteriaMgr CriteriaMgr,
     IItemFlowPlanTrackMgr ItemFlowPlanTrackMgr,
     ILocationDetailMgr LocationDetailMgr,
     IWorkCalendarMgr WorkCalendarMgr)
     : base(entityDao)
 {
     this.CriteriaMgr          = CriteriaMgr;
     this.ItemFlowPlanTrackMgr = ItemFlowPlanTrackMgr;
     this.LocationDetailMgr    = LocationDetailMgr;
     this.WorkCalendarMgr      = WorkCalendarMgr;
 }
 public ItemFlowPlanDetailMgr(
     IItemFlowPlanDetailDao entityDao,
     ICriteriaMgr CriteriaMgr,
     IItemFlowPlanTrackMgr ItemFlowPlanTrackMgr,
     ILocationDetailMgr LocationDetailMgr,
     IWorkCalendarMgr WorkCalendarMgr)
     : base(entityDao)
 {
     this.CriteriaMgr = CriteriaMgr;
     this.ItemFlowPlanTrackMgr = ItemFlowPlanTrackMgr;
     this.LocationDetailMgr = LocationDetailMgr;
     this.WorkCalendarMgr = WorkCalendarMgr;
 }
示例#3
0
 public ItemFlowPlanMgr(
     IItemFlowPlanDao entityDao,
     ICriteriaMgr CriteriaMgr,
     IItemFlowPlanDetailMgr ItemFlowPlanDetailMgr,
     IItemFlowPlanTrackMgr ItemFlowPlanTrackMgr,
     ISupplyChainMgr SupplyChainMgr,
     ILocationDetailMgr LocDetMgr,
     ISupplierMgr SupplierMgr,
     IRegionMgr RegionMgr,
     ICustomerMgr CustomerMgr,
     IBomDetailMgr BomDetailMgr)
     : base(entityDao)
 {
     this.CriteriaMgr           = CriteriaMgr;
     this.ItemFlowPlanDetailMgr = ItemFlowPlanDetailMgr;
     this.ItemFlowPlanTrackMgr  = ItemFlowPlanTrackMgr;
     this.SupplyChainMgr        = SupplyChainMgr;
     this.LocDetMgr             = LocDetMgr;
     this.SupplierMgr           = SupplierMgr;
     this.RegionMgr             = RegionMgr;
     this.CustomerMgr           = CustomerMgr;
     this.BomDetailMgr          = BomDetailMgr;
 }