Example #1
0
 public StockTakingMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     ICycleCountMgr cycleCountMgr,
     ICycleCountDetailMgr cycleCountDetailMgr,
     ILanguageMgr languageMgr,
     IHuMgr huMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IItemMgr itemMgr,
     IUserMgr userMgr,
     IStorageBinMgr storageBinMgr,
     ILocationMgr locationMgr
     )
 {
     this.setBaseMgr          = setBaseMgr;
     this.setDetailMgr        = setDetailMgr;
     this.executeMgr          = executeMgr;
     this.cycleCountMgr       = cycleCountMgr;
     this.cycleCountDetailMgr = cycleCountDetailMgr;
     this.languageMgr         = languageMgr;
     this.huMgr = huMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.itemMgr       = itemMgr;
     this.userMgr       = userMgr;
     this.storageBinMgr = storageBinMgr;
     this.locationMgr   = locationMgr;
 }
Example #2
0
 public StockTakingMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     ICycleCountMgr cycleCountMgr,
     ICycleCountDetailMgr cycleCountDetailMgr,
     ILanguageMgr languageMgr,
     IHuMgr huMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IItemMgr itemMgr,
     IUserMgr userMgr,
     IStorageBinMgr storageBinMgr,
     ILocationMgr locationMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.cycleCountMgr = cycleCountMgr;
     this.cycleCountDetailMgr = cycleCountDetailMgr;
     this.languageMgr = languageMgr;
     this.huMgr = huMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.itemMgr = itemMgr;
     this.userMgr = userMgr;
     this.storageBinMgr = storageBinMgr;
     this.locationMgr = locationMgr;
 }
Example #3
0
 public MaterialInMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IUserMgr userMgr,
     IItemMgr itemMgr,
     ILocationMgr locationMgr,
     IProductLineInProcessLocationDetailMgr productLineInProcessLocationDetailMgr,
     ILanguageMgr languageMgr,
     IBomDetailMgr bomDetailMgr,
     IHuMgr huMgr,
     IFlowMgr flowMgr,
     IRoutingDetailMgr routingDetailMgr
     )
 {
     this.setBaseMgr           = setBaseMgr;
     this.setDetailMgr         = setDetailMgr;
     this.executeMgr           = executeMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.userMgr     = userMgr;
     this.itemMgr     = itemMgr;
     this.locationMgr = locationMgr;
     this.productLineInProcessLocationDetailMgr = productLineInProcessLocationDetailMgr;
     this.languageMgr      = languageMgr;
     this.bomDetailMgr     = bomDetailMgr;
     this.huMgr            = huMgr;
     this.flowMgr          = flowMgr;
     this.routingDetailMgr = routingDetailMgr;
 }
Example #4
0
 public ReceiveMgr(
     ILanguageMgr languageMgr,
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IOrderHeadMgr orderHeadMgr,
     IOrderMgr orderMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IHuMgr huMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IPartyMgr partyMgr
     )
     : base()
 {
     this.languageMgr          = languageMgr;
     this.setBaseMgr           = setBaseMgr;
     this.setDetailMgr         = setDetailMgr;
     this.executeMgr           = executeMgr;
     this.orderHeadMgr         = orderHeadMgr;
     this.orderMgr             = orderMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.huMgr = huMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.partyMgr = partyMgr;
 }
Example #5
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;
 }
Example #6
0
 public ReceiveMgr(
     ILanguageMgr languageMgr,
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IOrderHeadMgr orderHeadMgr,
     IOrderMgr orderMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IHuMgr huMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IPartyMgr partyMgr
     )
     : base()
 {
     this.languageMgr = languageMgr;
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.orderHeadMgr = orderHeadMgr;
     this.orderMgr = orderMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.huMgr = huMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.partyMgr = partyMgr;
 }
Example #7
0
 public TransferMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IFlowMgr flowMgr,
     IHuMgr huMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IItemMgr itemMgr,
     IOrderDetailMgr orderDetailMgr,
     IOrderMgr orderMgr,
     ILanguageMgr languageMgr,
     IReceiptDetailMgr receiptDetailMgr,
     IReportMgr reportMgr,
     IStorageBinMgr storageBinMgr,
     ILocationMgr locationMgr
     )
 {
     this.setBaseMgr           = setBaseMgr;
     this.setDetailMgr         = setDetailMgr;
     this.executeMgr           = executeMgr;
     this.flowMgr              = flowMgr;
     this.huMgr                = huMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.itemMgr              = itemMgr;
     this.orderDetailMgr       = orderDetailMgr;
     this.orderMgr             = orderMgr;
     this.languageMgr          = languageMgr;
     this.receiptDetailMgr     = receiptDetailMgr;
     this.reportMgr            = reportMgr;
     this.storageBinMgr        = storageBinMgr;
     this.locationMgr          = locationMgr;
 }
Example #8
0
 public TransferMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IFlowMgr flowMgr,
     IHuMgr huMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IItemMgr itemMgr,
     IOrderDetailMgr orderDetailMgr,
     IOrderMgr orderMgr,
     ILanguageMgr languageMgr,
     IReceiptDetailMgr receiptDetailMgr,
     IReportMgr reportMgr,
     IStorageBinMgr storageBinMgr,
     ILocationMgr locationMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.flowMgr = flowMgr;
     this.huMgr = huMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.itemMgr = itemMgr;
     this.orderDetailMgr = orderDetailMgr;
     this.orderMgr = orderMgr;
     this.languageMgr = languageMgr;
     this.receiptDetailMgr = receiptDetailMgr;
     this.reportMgr = reportMgr;
     this.storageBinMgr = storageBinMgr;
     this.locationMgr = locationMgr;
 }
Example #9
0
 public MaterialInMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IUserMgr userMgr,
     IItemMgr itemMgr,
     ILocationMgr locationMgr,
     IProductLineInProcessLocationDetailMgr productLineInProcessLocationDetailMgr,
     ILanguageMgr languageMgr,
     IBomDetailMgr bomDetailMgr,
     IHuMgr huMgr,
     IFlowMgr flowMgr,
     IRoutingDetailMgr routingDetailMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.userMgr = userMgr;
     this.itemMgr = itemMgr;
     this.locationMgr = locationMgr;
     this.productLineInProcessLocationDetailMgr = productLineInProcessLocationDetailMgr;
     this.languageMgr = languageMgr;
     this.bomDetailMgr = bomDetailMgr;
     this.huMgr = huMgr;
     this.flowMgr = flowMgr;
     this.routingDetailMgr = routingDetailMgr;
 }
Example #10
0
 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;
 }
Example #11
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;
 }
Example #12
0
 public InspectMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IInspectOrderMgr inspectOrderMgr,
     ILanguageMgr languageMgr,
     IHuMgr huMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.inspectOrderMgr = inspectOrderMgr;
     this.languageMgr = languageMgr;
     this.huMgr = huMgr;
 }
Example #13
0
 public InspectMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IInspectOrderMgr inspectOrderMgr,
     ILanguageMgr languageMgr,
     IHuMgr huMgr
     )
 {
     this.setBaseMgr      = setBaseMgr;
     this.setDetailMgr    = setDetailMgr;
     this.executeMgr      = executeMgr;
     this.inspectOrderMgr = inspectOrderMgr;
     this.languageMgr     = languageMgr;
     this.huMgr           = huMgr;
 }
Example #14
0
 public DevanningMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IRepackMgr repackMgr,
     IUserMgr userMgr,
     ILanguageMgr languageMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.repackMgr = repackMgr;
     this.userMgr = userMgr;
     this.languageMgr = languageMgr;
 }
Example #15
0
        public RepRequisitionOrderMgr(String reportTemplateFolder, IOrderHeadMgr orderHeadMgr, ILocationLotDetailMgr locationLotDetailMgr, ILanguageMgr languageMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.orderHeadMgr         = orderHeadMgr;
            this.locationLotDetailMgr = locationLotDetailMgr;
            this.languageMgr          = languageMgr;

            //明细部分的行数
            this.pageDetailRowCount = 20;
            //列数   1起始
            this.columnCount = 12;
            //报表头的行数  1起始
            this.headRowCount = 15;
            //报表尾的行数  1起始
            this.bottomRowCount = 7;
        }
Example #16
0
 public DevanningMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IRepackMgr repackMgr,
     IUserMgr userMgr,
     ILanguageMgr languageMgr
     )
 {
     this.setBaseMgr   = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr   = executeMgr;
     this.repackMgr    = repackMgr;
     this.userMgr      = userMgr;
     this.languageMgr  = languageMgr;
 }
Example #17
0
 public PickupMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     ILocationMgr locationMgr,
     ILanguageMgr languageMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.locationMgr = locationMgr;
     this.languageMgr = languageMgr;
 }
        public RepRequisitionOrderMgr(String reportTemplateFolder, IOrderHeadMgr orderHeadMgr, ILocationLotDetailMgr locationLotDetailMgr, ILanguageMgr languageMgr)
        {
            this.reportTemplateFolder = reportTemplateFolder;
            this.orderHeadMgr = orderHeadMgr;
            this.locationLotDetailMgr = locationLotDetailMgr;
            this.languageMgr = languageMgr;

            //明细部分的行数
            this.pageDetailRowCount = 20;
            //列数   1起始
            this.columnCount = 12;
            //报表头的行数  1起始
            this.headRowCount = 15;
            //报表尾的行数  1起始
            this.bottomRowCount = 7;
        }
Example #19
0
 public PickupMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     ILocationMgr locationMgr,
     ILanguageMgr languageMgr
     )
 {
     this.setBaseMgr           = setBaseMgr;
     this.setDetailMgr         = setDetailMgr;
     this.executeMgr           = executeMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.locationMgr          = locationMgr;
     this.languageMgr          = languageMgr;
 }
Example #20
0
 public RepDasAutoAsnMgr(String reportTemplateFolder,
                         IOrderHeadMgr orderHeadMgr,
                         ILocationLotDetailMgr locationLotDetailMgr,
                         ILanguageMgr languageMgr,
                         ILocationTransactionMgr locationTranMgr,
                         ICriteriaMgr criteriaMgr,
                         IItemReferenceMgr itemrefMgr,
                         IInProcessLocationMgr inpMgr)
 {
     this.reportTemplateFolder = reportTemplateFolder;
     this.orderHeadMgr         = orderHeadMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.locationTranMgr      = locationTranMgr;
     this.criteriaMgr          = criteriaMgr;
     this.itemrefMgr           = itemrefMgr;
     this.inpMgr = inpMgr;
 }
 public RepDasAutoAsnMgr(String reportTemplateFolder,
     IOrderHeadMgr orderHeadMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     ILanguageMgr languageMgr,
     ILocationTransactionMgr locationTranMgr,
    ICriteriaMgr criteriaMgr,
     IItemReferenceMgr itemrefMgr,
     IInProcessLocationMgr inpMgr)
 {
     this.reportTemplateFolder = reportTemplateFolder;
     this.orderHeadMgr = orderHeadMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.locationTranMgr = locationTranMgr;
     this.criteriaMgr = criteriaMgr;
     this.itemrefMgr = itemrefMgr;
     this.inpMgr = inpMgr;
 }
Example #22
0
 public InspectionMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IUserMgr userMgr,
     IInspectOrderMgr inspectOrderMgr,
     ILanguageMgr languageMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.userMgr = userMgr;
     this.inspectOrderMgr = inspectOrderMgr;
     this.languageMgr = languageMgr;
 }
Example #23
0
 public FlushBackMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IProductLineInProcessLocationDetailMgr productLineInProcessLocationDetailMgr,
     IUserMgr userMgr,
     ILanguageMgr languageMgr,
     IHuMgr huMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.productLineInProcessLocationDetailMgr = productLineInProcessLocationDetailMgr;
     this.userMgr = userMgr;
     this.languageMgr = languageMgr;
     this.huMgr = huMgr;
 }
Example #24
0
 public FlushBackMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IProductLineInProcessLocationDetailMgr productLineInProcessLocationDetailMgr,
     IUserMgr userMgr,
     ILanguageMgr languageMgr,
     IHuMgr huMgr
     )
 {
     this.setBaseMgr   = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr   = executeMgr;
     this.productLineInProcessLocationDetailMgr = productLineInProcessLocationDetailMgr;
     this.userMgr     = userMgr;
     this.languageMgr = languageMgr;
     this.huMgr       = huMgr;
 }
Example #25
0
 public InspectionMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IUserMgr userMgr,
     IInspectOrderMgr inspectOrderMgr,
     ILanguageMgr languageMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.userMgr = userMgr;
     this.inspectOrderMgr = inspectOrderMgr;
     this.languageMgr = languageMgr;
 }
Example #26
0
 public PutAwayMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     ILanguageMgr languageMgr,
     IStorageBinMgr storageBinMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     ILocationMgr locationMgr,
     IHuMgr huMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.languageMgr = languageMgr;
     this.storageBinMgr = storageBinMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.locationMgr = locationMgr;
     this.huMgr = huMgr;
 }
Example #27
0
 public RepackageMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IRepackMgr repackMgr,
     IUserMgr userMgr,
     ILanguageMgr languageMgr,
     IReportMgr reportMgr,
     IEntityPreferenceMgr entityPreferenceMgr
     )
 {
     this.setBaseMgr          = setBaseMgr;
     this.setDetailMgr        = setDetailMgr;
     this.executeMgr          = executeMgr;
     this.repackMgr           = repackMgr;
     this.userMgr             = userMgr;
     this.languageMgr         = languageMgr;
     this.reportMgr           = reportMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
 }
Example #28
0
 public RepackageMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IRepackMgr repackMgr,
     IUserMgr userMgr,
     ILanguageMgr languageMgr,
     IReportMgr reportMgr,
     IEntityPreferenceMgr entityPreferenceMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.repackMgr = repackMgr;
     this.userMgr = userMgr;
     this.languageMgr = languageMgr;
     this.reportMgr = reportMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
 }
Example #29
0
 public SetBaseMgr(
     IUserMgr userMgr,
     IOrderHeadMgr orderHeadMgr,
     IPickListMgr pickListMgr,
     IStorageBinMgr storageBinMgr,
     ILanguageMgr languageMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     IFlowMgr flowMgr,
     ILocationMgr locationMgr
     )
 {
     this.userMgr              = userMgr;
     this.orderHeadMgr         = orderHeadMgr;
     this.pickListMgr          = pickListMgr;
     this.storageBinMgr        = storageBinMgr;
     this.languageMgr          = languageMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.flowMgr              = flowMgr;
     this.locationMgr          = locationMgr;
 }
Example #30
0
 public PutAwayMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     ILanguageMgr languageMgr,
     IStorageBinMgr storageBinMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     ILocationMgr locationMgr,
     IHuMgr huMgr
     )
 {
     this.setBaseMgr           = setBaseMgr;
     this.setDetailMgr         = setDetailMgr;
     this.executeMgr           = executeMgr;
     this.languageMgr          = languageMgr;
     this.storageBinMgr        = storageBinMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.locationMgr          = locationMgr;
     this.huMgr = huMgr;
 }
Example #31
0
 public SetBaseMgr(
     IUserMgr userMgr,
     IOrderHeadMgr orderHeadMgr,
     IPickListMgr pickListMgr,
     IStorageBinMgr storageBinMgr,
     ILanguageMgr languageMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     IFlowMgr flowMgr,
     ILocationMgr locationMgr
     )
 {
     this.userMgr = userMgr;
     this.orderHeadMgr = orderHeadMgr;
     this.pickListMgr = pickListMgr;
     this.storageBinMgr = storageBinMgr;
     this.languageMgr = languageMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.flowMgr = flowMgr;
     this.locationMgr = locationMgr;
 }
Example #32
0
 public PickMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IPickListMgr pickListMgr,
     ILanguageMgr languageMgr,
     IPickListDetailMgr pickListDetailMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     ICriteriaMgr criteriaMgr,
     IReportMgr reportMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.pickListMgr = pickListMgr;
     this.languageMgr = languageMgr;
     this.pickListDetailMgr = pickListDetailMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.criteriaMgr = criteriaMgr;
     this.reportMgr = reportMgr;
 }
Example #33
0
 public PickMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IPickListMgr pickListMgr,
     ILanguageMgr languageMgr,
     IPickListDetailMgr pickListDetailMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     ICriteriaMgr criteriaMgr,
     IReportMgr reportMgr
     )
 {
     this.setBaseMgr           = setBaseMgr;
     this.setDetailMgr         = setDetailMgr;
     this.executeMgr           = executeMgr;
     this.pickListMgr          = pickListMgr;
     this.languageMgr          = languageMgr;
     this.pickListDetailMgr    = pickListDetailMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.criteriaMgr          = criteriaMgr;
     this.reportMgr            = reportMgr;
 }
Example #34
0
 public OfflineMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IEmployeeMgr employeeMgr,
     IOrderMgr orderMgr,
     IOrderHeadMgr orderHeadMgr,
     IReportMgr reportMgr,
     IHuMgr huMgr,
     ILanguageMgr languageMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.employeeMgr = employeeMgr;
     this.orderMgr = orderMgr;
     this.orderHeadMgr = orderHeadMgr;
     this.reportMgr = reportMgr;
     this.huMgr = huMgr;
     this.languageMgr = languageMgr;
 }
Example #35
0
 public OfflineMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IEmployeeMgr employeeMgr,
     IOrderMgr orderMgr,
     IOrderHeadMgr orderHeadMgr,
     IReportMgr reportMgr,
     IHuMgr huMgr,
     ILanguageMgr languageMgr
     )
 {
     this.setBaseMgr   = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr   = executeMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.employeeMgr  = employeeMgr;
     this.orderMgr     = orderMgr;
     this.orderHeadMgr = orderHeadMgr;
     this.reportMgr    = reportMgr;
     this.huMgr        = huMgr;
     this.languageMgr  = languageMgr;
 }
Example #36
0
 public ExecuteMgr(
     ILanguageMgr languageMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IStorageBinMgr storageBinMgr,
     IInspectOrderDetailMgr inspectOrderDetailMgr,
     IHuMgr huMgr,
     IOrderMgr orderMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IItemMgr itemMgr,
     IUomMgr uomMgr,
     ILocationMgr locationMgr,
     IFlowMgr flowMgr,
     IUserMgr userMgr,
     IReceiptMgr receiptMgr,
     IReceiptDetailMgr receiptDetailMgr,
     IReportMgr reportMgr,
     ISetDetailMgr setDetailMgr
     )
 {
     this.languageMgr           = languageMgr;
     this.locationLotDetailMgr  = locationLotDetailMgr;
     this.storageBinMgr         = storageBinMgr;
     this.inspectOrderDetailMgr = inspectOrderDetailMgr;
     this.huMgr               = huMgr;
     this.orderMgr            = orderMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.itemMgr             = itemMgr;
     this.uomMgr              = uomMgr;
     this.locationMgr         = locationMgr;
     this.flowMgr             = flowMgr;
     this.userMgr             = userMgr;
     this.receiptMgr          = receiptMgr;
     this.receiptDetailMgr    = receiptDetailMgr;
     this.reportMgr           = reportMgr;
     this.setDetailMgr        = setDetailMgr;
 }
Example #37
0
 public ExecuteMgr(
     ILanguageMgr languageMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IStorageBinMgr storageBinMgr,
     IInspectOrderDetailMgr inspectOrderDetailMgr,
     IHuMgr huMgr,
     IOrderMgr orderMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IItemMgr itemMgr,
     IUomMgr uomMgr,
     ILocationMgr locationMgr,
     IFlowMgr flowMgr,
     IUserMgr userMgr,
     IReceiptMgr receiptMgr,
     IReceiptDetailMgr receiptDetailMgr,
     IReportMgr reportMgr,
     ISetDetailMgr setDetailMgr
     )
 {
     this.languageMgr = languageMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.storageBinMgr = storageBinMgr;
     this.inspectOrderDetailMgr = inspectOrderDetailMgr;
     this.huMgr = huMgr;
     this.orderMgr = orderMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.itemMgr = itemMgr;
     this.uomMgr = uomMgr;
     this.locationMgr = locationMgr;
     this.flowMgr = flowMgr;
     this.userMgr = userMgr;
     this.receiptMgr = receiptMgr;
     this.receiptDetailMgr = receiptDetailMgr;
     this.reportMgr = reportMgr;
     this.setDetailMgr = setDetailMgr;
 }
Example #38
0
 public ReuseMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IFlowMgr flowMgr,
     IHuMgr huMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     ILanguageMgr languageMgr,
     IOrderMgr orderMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IUserMgr userMgr
     )
 {
     this.setBaseMgr                  = setBaseMgr;
     this.setDetailMgr                = setDetailMgr;
     this.executeMgr                  = executeMgr;
     this.flowMgr                     = flowMgr;
     this.huMgr                       = huMgr;
     this.locationLotDetailMgr        = locationLotDetailMgr;
     this.languageMgr                 = languageMgr;
     this.orderMgr                    = orderMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.userMgr                     = userMgr;
 }
Example #39
0
 public ReuseMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IFlowMgr flowMgr,
     IHuMgr huMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     ILanguageMgr languageMgr,
     IOrderMgr orderMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IUserMgr userMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.flowMgr = flowMgr;
     this.huMgr = huMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.languageMgr = languageMgr;
     this.orderMgr = orderMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.userMgr = userMgr;
 }