コード例 #1
0
 public ShipMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IOrderMgr orderMgr,
     IOrderHeadMgr orderHeadMgr,
     IExecuteMgr executeMgr,
     ILanguageMgr languageMgr,
     IReportMgr reportMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     IPickListResultMgr pickListResultMgr,
     IHuMgr huMgr,
     IFlowMgr flowMgr,
     IPartyMgr partyMgr,
     IPickListMgr pickListMgr
     )
     : base()
 {
     this.setBaseMgr           = setBaseMgr;
     this.setDetailMgr         = setDetailMgr;
     this.orderMgr             = orderMgr;
     this.orderHeadMgr         = orderHeadMgr;
     this.executeMgr           = executeMgr;
     this.languageMgr          = languageMgr;
     this.reportMgr            = reportMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.pickListResultMgr    = pickListResultMgr;
     this.huMgr       = huMgr;
     this.flowMgr     = flowMgr;
     this.partyMgr    = partyMgr;
     this.pickListMgr = pickListMgr;
 }
コード例 #2
0
ファイル: PickListMgr.cs プロジェクト: Novthirteen/yfkey-scms
 public PickListMgr(IPickListDao entityDao,
                    IEntityPreferenceMgr entityPreferenceMgr,
                    INumberControlMgr numberControlMgr,
                    IPickListDetailMgr pickListDetailMgr,
                    IPickListResultMgr pickListResultMgr,
                    ILocationMgr locationMgr,
                    ILocationLotDetailMgr locationLotDetailMgr,
                    IOrderLocationTransactionMgr orderLocationTransactionMgr,
                    IUserMgr userMgr,
                    ILanguageMgr languageMgr,
                    ICriteriaMgr criteriaMgr,
                    ICodeMasterMgr codeMasterMgr,
                    IFlowMgr flowMgr)
     : base(entityDao)
 {
     this.entityPreferenceMgr         = entityPreferenceMgr;
     this.numberControlMgr            = numberControlMgr;
     this.pickListDetailMgr           = pickListDetailMgr;
     this.pickListResultMgr           = pickListResultMgr;
     this.locationMgr                 = locationMgr;
     this.locationLotDetailMgr        = locationLotDetailMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.userMgr       = userMgr;
     this.languageMgr   = languageMgr;
     this.criteriaMgr   = criteriaMgr;
     this.codeMasterMgr = codeMasterMgr;
     this.flowMgr       = flowMgr;
 }
コード例 #3
0
 public ScanBarcodeMgr(ICriteriaMgr criteriaMgr,
     IStorageBinMgr storageBinMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IHuMgr huMgr,
     IFlowMgr flowMgr,
     IFlowDetailMgr flowDetailMgr,
     IPickListMgr pickListMgr,
     IPickListDetailMgr pickListDetailMgr,
     IPickListResultMgr pickListResultMgr,
     IUserMgr userMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     IReceiptMgr receiptMgr,
     IOrderHeadMgr orderHeadMgr,
     IOrderDetailMgr orderDetailMgr,
     IOrderMgr orderMgr,
     ILocationMgr locationMgr,
     IItemMgr itemMgr,
     IUomMgr uomMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IEmployeeMgr employeeMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IUomConversionMgr uomConversionMgr,
     INumberControlMgr numberControlMgr,
     ILanguageMgr languageMgr,
     IRepackMgr repackMgr,
     IInspectOrderMgr inspectOrderMgr,
     IInspectOrderDetailMgr inspectOrderDetailMgr,
     IProductLineInProcessLocationDetailMgr productLineInProcessLocationDetailMgr)
 {
     this.criteriaMgr = criteriaMgr;
     this.storageBinMgr = storageBinMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.huMgr = huMgr;
     this.flowMgr = flowMgr;
     this.flowDetailMgr = flowDetailMgr;
     this.pickListMgr = pickListMgr;
     this.pickListDetailMgr = pickListDetailMgr;
     this.pickListResultMgr = pickListResultMgr;
     this.userMgr = userMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.receiptMgr = receiptMgr;
     this.orderHeadMgr = orderHeadMgr;
     this.orderDetailMgr = orderDetailMgr;
     this.orderMgr = orderMgr;
     this.locationMgr = locationMgr;
     this.itemMgr = itemMgr;
     this.uomMgr = uomMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.employeeMgr = employeeMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.numberControlMgr = numberControlMgr;
     this.languageMgr = languageMgr;
     this.repackMgr = repackMgr;
     this.inspectOrderMgr = inspectOrderMgr;
     this.inspectOrderDetailMgr = inspectOrderDetailMgr;
     this.productLineInProcessLocationDetailMgr = productLineInProcessLocationDetailMgr;
 }
コード例 #4
0
 public LocationDetailMgr(ILocationDetailDao entityDao,
                          ICriteriaMgr CriteriaMgr,
                          IRegionMgr RegionMgr,
                          ILocationMgr LocationMgr,
                          IItemMgr ItemMgr,
                          IOrderLocationTransactionMgr OrderLocTransMgr,
                          ILocationTransactionMgr LocTransMgr,
                          IInProcessLocationDetailMgr IPLocDetMgr,
                          IUomConversionMgr UomConversionMgr,
                          IPickListResultMgr PickListResultMgr)
     : base(entityDao)
 {
     this.CriteriaMgr       = CriteriaMgr;
     this.RegionMgr         = RegionMgr;
     this.LocationMgr       = LocationMgr;
     this.ItemMgr           = ItemMgr;
     this.OrderLocTransMgr  = OrderLocTransMgr;
     this.LocTransMgr       = LocTransMgr;
     this.IPLocDetMgr       = IPLocDetMgr;
     this.UomConversionMgr  = UomConversionMgr;
     this.PickListResultMgr = PickListResultMgr;
 }
コード例 #5
0
 public LocationDetailMgr(ILocationDetailDao entityDao,
     ICriteriaMgr CriteriaMgr,
     IRegionMgr RegionMgr,
     ILocationMgr LocationMgr,
     IItemMgr ItemMgr,
     IOrderLocationTransactionMgr OrderLocTransMgr,
     ILocationTransactionMgr LocTransMgr,
     IInProcessLocationDetailMgr IPLocDetMgr,
     IUomConversionMgr UomConversionMgr,
     IPickListResultMgr PickListResultMgr)
     : base(entityDao)
 {
     this.CriteriaMgr = CriteriaMgr;
     this.RegionMgr = RegionMgr;
     this.LocationMgr = LocationMgr;
     this.ItemMgr = ItemMgr;
     this.OrderLocTransMgr = OrderLocTransMgr;
     this.LocTransMgr = LocTransMgr;
     this.IPLocDetMgr = IPLocDetMgr;
     this.UomConversionMgr = UomConversionMgr;
     this.PickListResultMgr = PickListResultMgr;
 }
コード例 #6
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;
 }