コード例 #1
0
 public LeanEngineMgr(
     ICriteriaMgr CriteriaMgr,
     IFlowMgr FlowMgr,
     IFlowDetailMgr FlowDetailMgr,
     IOrderMgr OrderMgr,
     IUserMgr UserMgr,
     ILocationDetailMgr LocDetMgr,
     IOrderDetailMgr OrderDetailMgr,
     IAutoOrderTrackMgr AutoOrderTrackMgr,
     IOrderLocationTransactionMgr OrderLocTransMgr,
     IUomConversionMgr UomConversionMgr,
     IShiftMgr shiftMgr)
     : base()
 {
     this.CriteriaMgr       = CriteriaMgr;
     this.FlowMgr           = FlowMgr;
     this.FlowDetailMgr     = FlowDetailMgr;
     this.OrderMgr          = OrderMgr;
     this.UserMgr           = UserMgr;
     this.LocDetMgr         = LocDetMgr;
     this.OrderDetailMgr    = OrderDetailMgr;
     this.AutoOrderTrackMgr = AutoOrderTrackMgr;
     this.OrderLocTransMgr  = OrderLocTransMgr;
     this.UomConversionMgr  = UomConversionMgr;
     this.shiftMgr          = shiftMgr;
 }
コード例 #2
0
ファイル: ImportMgr.cs プロジェクト: Novthirteen/yfkey-scms
 public ImportMgr(ICriteriaMgr criteriaMgr,
     IShiftMgr shiftMgr,
     IFlowDetailMgr flowDetailMgr,
     IItemMgr itemMgr,
     IUomMgr uomMgr,
     IUomConversionMgr uomConversionMgr,
     IHuMgr huMgr,
     IStorageBinMgr storageBinMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     ISupplierMgr supplierMgr,
     IFlowMgr flowMgr,
      IOrderMgr orderMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IItemReferenceMgr itemReferenceMgr)
 {
     this.criteriaMgr = criteriaMgr;
     this.shiftMgr = shiftMgr;
     this.flowDetailMgr = flowDetailMgr;
     this.itemMgr = itemMgr;
     this.uomMgr = uomMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.huMgr = huMgr;
     this.storageBinMgr = storageBinMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.supplierMgr = supplierMgr;
     this.flowMgr = flowMgr;
     this.orderMgr = orderMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.itemReferenceMgr = itemReferenceMgr;
 }
コード例 #3
0
 public WorkCalendarMgr(ICriteriaMgr criteriaMgr,
                        IWorkdayMgr WorkdayMgr,
                        ISpecialTimeMgr SpecialTimeMgr,
                        IShiftMgr ShiftMgr,
                        IWorkdayShiftMgr WorkdayShiftMgr)
 {
     this.criteriaMgr     = criteriaMgr;
     this.WorkdayMgr      = WorkdayMgr;
     this.ShiftMgr        = ShiftMgr;
     this.SpecialTimeMgr  = SpecialTimeMgr;
     this.WorkdayShiftMgr = WorkdayShiftMgr;
 }
コード例 #4
0
 public ShiftPlanScheduleMgr(IShiftPlanScheduleDao entityDao,
                             ICriteriaMgr criteriaMgr,
                             IOrderMgr OrderMgr,
                             IShiftMgr ShiftMgr,
                             ILeanEngineMgr LeanEngineMgr)
     : base(entityDao)
 {
     this.criteriaMgr   = criteriaMgr;
     this.OrderMgr      = OrderMgr;
     this.ShiftMgr      = ShiftMgr;
     this.LeanEngineMgr = LeanEngineMgr;
 }
コード例 #5
0
 public ShiftPlanScheduleMgr(IShiftPlanScheduleDao entityDao,
     ICriteriaMgr criteriaMgr,
     IOrderMgr OrderMgr,
     IShiftMgr ShiftMgr,
     ILeanEngineMgr LeanEngineMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.OrderMgr = OrderMgr;
     this.ShiftMgr = ShiftMgr;
     this.LeanEngineMgr = LeanEngineMgr;
 }
コード例 #6
0
 public WorkCalendarMgr(ICriteriaMgr criteriaMgr,
     IWorkdayMgr WorkdayMgr,
     ISpecialTimeMgr SpecialTimeMgr,
     IShiftMgr ShiftMgr,
     IWorkdayShiftMgr WorkdayShiftMgr)
 {
     this.criteriaMgr = criteriaMgr;
     this.WorkdayMgr = WorkdayMgr;
     this.ShiftMgr = ShiftMgr;
     this.SpecialTimeMgr = SpecialTimeMgr;
     this.WorkdayShiftMgr = WorkdayShiftMgr;
 }
コード例 #7
0
ファイル: OrderMgr.cs プロジェクト: Novthirteen/yfkey-scms
 public OrderMgr(IUserMgr userMgr,
     IOrderHeadMgr orderHeadMgr,
     IOrderDetailMgr orderDetailMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IOrderOperationMgr orderOperationMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IFlowMgr flowMgr,
     IFlowDetailMgr flowDetailMgr,
     INumberControlMgr numberControlMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     IInProcessLocationDetailMgr inProcessLocationDetailMgr,
     IAutoOrderTrackMgr autoOrderTrackMgr,
     IReceiptMgr receiptMgr,
     IFlowBindingMgr flowBindingMgr,
     IUomConversionMgr uomConversionMgr,
     IItemKitMgr itemKitMgr,
     IWorkingHoursMgr workingHoursMgr,
     IOrderBindingMgr orderBindingMgr,
     ILocationMgr locationMgr,
     IPickListMgr pickListMgr,
     IPickListResultMgr pickListResultMgr,
     IShiftMgr shiftMgr,
     IOrderPlannedBackflushMgr orderPlannedBackflushMgr,
     IActingBillMgr actingBillMgr,
     IPlannedBillMgr plannedBillMgr,
     ICriteriaMgr criteriaMgr,
     IHuMgr huMgr,
     IPriceListDetailMgr priceListDetailMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IOrderTracerMgr orderTracerMgr,
     ITransportationActBillMgr transportationActBillMgr)
 {
     this.userMgr = userMgr;
     this.orderHeadMgr = orderHeadMgr;
     this.orderDetailMgr = orderDetailMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.orderOperationMgr = orderOperationMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.flowMgr = flowMgr;
     this.flowDetailMgr = flowDetailMgr;
     this.numberControlMgr = numberControlMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.inProcessLocationDetailMgr = inProcessLocationDetailMgr;
     this.autoOrderTrackMgr = autoOrderTrackMgr;
     this.receiptMgr = receiptMgr;
     this.flowBindingMgr = flowBindingMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.itemKitMgr = itemKitMgr;
     this.workingHoursMgr = workingHoursMgr;
     this.orderBindingMgr = orderBindingMgr;
     this.locationMgr = locationMgr;
     this.pickListMgr = pickListMgr;
     this.pickListResultMgr = pickListResultMgr;
     this.shiftMgr = shiftMgr;
     this.orderPlannedBackflushMgr = orderPlannedBackflushMgr;
     this.actingBillMgr = actingBillMgr;
     this.plannedBillMgr = plannedBillMgr;
     this.criteriaMgr = criteriaMgr;
     this.huMgr = huMgr;
     this.priceListDetailMgr = priceListDetailMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.orderTracerMgr = orderTracerMgr;
     this.transportationActBillMgr = transportationActBillMgr;
 }
コード例 #8
0
 public WorkdayShiftMgr(IWorkdayShiftDao entityDao, ICriteriaMgr criteriaMgr, IShiftMgr ShiftMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.ShiftMgr = ShiftMgr;
 }
コード例 #9
0
 public WorkdayShiftMgr(IWorkdayShiftDao entityDao, ICriteriaMgr criteriaMgr, IShiftMgr ShiftMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.ShiftMgr    = ShiftMgr;
 }