Exemplo n.º 1
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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 3
0
        //private ITransportationOrderMgr transportationOrderMgr;

        public ReceiptMgr(IReceiptDao entityDao,
                          IReceiptDetailMgr receiptDetailMgr,
                          INumberControlMgr numberControlMgr,
                          ILocationMgr locationMgr,
                          ILocationLotDetailMgr locationLotDetailMgr,
                          IHuMgr huMgr,
                          IHuOddMgr huOddMgr,
                          IOrderLocationTransactionMgr orderLocationTransactionMgr,
                          IInProcessLocationMgr inProcessLocationMgr,
                          IInProcessLocationDetailMgr inProcessLocationDetailMgr,
                          IReceiptInProcessLocationMgr receiptInProcessLocationMgr,
                          IInspectOrderMgr inspectOrderMgr,
                          ICriteriaMgr criteriaMgr,
                          IUserMgr userMgr)
            : base(entityDao)
        {
            this.receiptDetailMgr     = receiptDetailMgr;
            this.numberControlMgr     = numberControlMgr;
            this.locationMgr          = locationMgr;
            this.locationLotDetailMgr = locationLotDetailMgr;
            this.huMgr    = huMgr;
            this.huOddMgr = huOddMgr;
            this.orderLocationTransactionMgr = orderLocationTransactionMgr;
            this.inProcessLocationMgr        = inProcessLocationMgr;
            this.inProcessLocationDetailMgr  = inProcessLocationDetailMgr;
            this.receiptInProcessLocationMgr = receiptInProcessLocationMgr;
            this.inspectOrderMgr             = inspectOrderMgr;
            this.criteriaMgr = criteriaMgr;
            this.userMgr     = userMgr;;
        }
 public InProcessLocationMgr(IInProcessLocationDao entityDao,
     IInProcessLocationDetailMgr inProcessLocationDetailMgr,
     INumberControlMgr numberControlMgr,
     ILocationMgr locationMgr,
     IHuMgr huMgr, IUserMgr userMgr,
     IInProcessLocationTrackMgr inProcessLocationTrackMgr,
     IShipAddressMgr shipAddressMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IInspectOrderMgr inspectOrderMgr,
     ICriteriaMgr criteriaMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IOrderDetailMgr orderDetailMgr,
     IFlowMgr flowMgr)
     : base(entityDao)
 {
     this.inProcessLocationDetailMgr = inProcessLocationDetailMgr;
     this.numberControlMgr = numberControlMgr;
     this.locationMgr = locationMgr;
     this.huMgr = huMgr;
     this.userMgr = userMgr;
     this.inProcessLocationTrackMgr = inProcessLocationTrackMgr;
     this.shipAddressMgr = shipAddressMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.inspectOrderMgr = inspectOrderMgr;
     this.criteriaMgr = criteriaMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.orderDetailMgr = orderDetailMgr;
     this.flowMgr = flowMgr;
 }
Exemplo n.º 5
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;
 }
Exemplo n.º 6
0
 //private ITransportationOrderMgr transportationOrderMgr;
 public ReceiptMgr(IReceiptDao entityDao,
     IReceiptDetailMgr receiptDetailMgr,
     INumberControlMgr numberControlMgr,
     ILocationMgr locationMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IHuMgr huMgr,
     IHuOddMgr huOddMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     IInProcessLocationDetailMgr inProcessLocationDetailMgr,
     IReceiptInProcessLocationMgr receiptInProcessLocationMgr,
     IInspectOrderMgr inspectOrderMgr,
     ICriteriaMgr criteriaMgr,
     IUserMgr userMgr)
     : base(entityDao)
 {
     this.receiptDetailMgr = receiptDetailMgr;
     this.numberControlMgr = numberControlMgr;
     this.locationMgr = locationMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.huMgr = huMgr;
     this.huOddMgr = huOddMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.inProcessLocationDetailMgr = inProcessLocationDetailMgr;
     this.receiptInProcessLocationMgr = receiptInProcessLocationMgr;
     this.inspectOrderMgr = inspectOrderMgr;
     this.criteriaMgr = criteriaMgr;
     this.userMgr = userMgr;;
 }
Exemplo n.º 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;
 }
Exemplo n.º 8
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;
 }
Exemplo n.º 9
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;
 }
Exemplo n.º 10
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;
 }
Exemplo n.º 11
0
 public RepBarCodeMgr(String reportTemplateFolder, String barCodeFontName, short barCodeFontSize, IHuMgr huMgr)
 {
     this.reportTemplateFolder = reportTemplateFolder;
     this.barCodeFontName      = barCodeFontName;
     this.barCodeFontSize      = barCodeFontSize;
     this.huMgr = huMgr;
 }
Exemplo n.º 12
0
 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;
 }
Exemplo n.º 13
0
 public LocationMgr(ILocationDao entityDao,
     ILocationLotDetailMgr locationLotDetailMgr,
     INumberControlMgr numberControlMgr,
     ICriteriaMgr criteriaMgr,
     ILocationTransactionMgr locationTransactionMgr,
     IRegionMgr regionMgr,
     IUserMgr userMgr,
     IPlannedBillMgr plannedBillMgr,
     IStorageBinMgr storageBinMgr,
     IHuMgr huMgr,
     IBillMgr billMgr,
     IItemMgr itemMgr)
     : base(entityDao)
 {
     this.numberControlMgr = numberControlMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.criteriaMgr = criteriaMgr;
     this.locationTransactionMgr = locationTransactionMgr;
     this.regionMgr = regionMgr;
     this.userMgr = userMgr;
     this.plannedBillMgr = plannedBillMgr;
     this.storageBinMgr = storageBinMgr;
     this.huMgr = huMgr;
     this.billMgr = billMgr;
     this.itemMgr = itemMgr;
 }
Exemplo n.º 14
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;
 }
Exemplo n.º 15
0
 public RepBarCodeMgr(String reportTemplateFolder, String barCodeFontName, short barCodeFontSize, IHuMgr huMgr)
 {
     this.reportTemplateFolder = reportTemplateFolder;
     this.barCodeFontName = barCodeFontName;
     this.barCodeFontSize = barCodeFontSize;
     this.huMgr = huMgr;
 }
Exemplo n.º 16
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;
 }
Exemplo n.º 17
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;
 }
Exemplo n.º 18
0
 public MaterialFlushBackMgr(
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IHuMgr huMgr,
     IGenericMgr genericMgr)
 {
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.entityPreferenceMgr         = entityPreferenceMgr;
     this.huMgr      = huMgr;
     this.genericMgr = genericMgr;
 }
Exemplo n.º 19
0
 public LocationLotDetailMgr(
     ILocationLotDetailDao entityDao,
     ICriteriaMgr criteriaMgr,
     IUserMgr userMgr,
     IHuMgr huMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.huMgr       = huMgr;
     this.userMgr     = userMgr;
 }
Exemplo n.º 20
0
 public MaterialFlushBackMgr(
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IHuMgr huMgr,
     IGenericMgr genericMgr)
 {
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.huMgr = huMgr;
     this.genericMgr = genericMgr;
 }
Exemplo n.º 21
0
 public LocationLotDetailMgr(
     ILocationLotDetailDao entityDao,
     ICriteriaMgr criteriaMgr,
     IUserMgr userMgr,
     IHuMgr huMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.huMgr = huMgr;
     this.userMgr = userMgr;
 }
 public OrderLocationTransactionMgr(IOrderLocationTransactionDao entityDao,
                                    ICriteriaMgr criteriaMgr,
                                    IUomConversionMgr uomConversionMgr,
                                    IBomMgr bomMgr,
                                    IBomDetailMgr bomDetailMgr,
                                    IOrderOperationMgr orderOperationMgr,
                                    IHuMgr huMgr)
     : base(entityDao)
 {
     this.criteriaMgr       = criteriaMgr;
     this.uomConversionMgr  = uomConversionMgr;
     this.bomMgr            = bomMgr;
     this.bomDetailMgr      = bomDetailMgr;
     this.orderOperationMgr = orderOperationMgr;
     this.huMgr             = huMgr;
 }
Exemplo n.º 23
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;
 }
 public OrderLocationTransactionMgr(IOrderLocationTransactionDao entityDao,
     ICriteriaMgr criteriaMgr,
     IUomConversionMgr uomConversionMgr,
     IBomMgr bomMgr,
     IBomDetailMgr bomDetailMgr,
     IOrderOperationMgr orderOperationMgr,
     IHuMgr huMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.bomMgr = bomMgr;
     this.bomDetailMgr = bomDetailMgr;
     this.orderOperationMgr = orderOperationMgr;
     this.huMgr = huMgr;
 }
Exemplo n.º 25
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;
 }
Exemplo n.º 26
0
 public WOReceiptInboundJob(
     ICriteriaMgr criteriaMgr,
     IUomConversionMgr uomConversionMgr,
     IUserMgr userMgr,
     IHuMgr huMgr,
     INumberControlMgr numberControlMgr,
     IOrderMgr orderManager,
     IOrderLocationTransactionMgr orderLocationTransactionMgr)
 {
     this.criteriaMgr                 = criteriaMgr;
     this.uomConversionMgr            = uomConversionMgr;
     this.userMgr                     = userMgr;
     this.huMgr                       = huMgr;
     this.numberControlMgr            = numberControlMgr;
     this.orderManager                = orderManager;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
 }
Exemplo n.º 27
0
 public WOReceiptInboundJob(
     ICriteriaMgr criteriaMgr,
     IUomConversionMgr uomConversionMgr,
     IUserMgr userMgr,
     IHuMgr huMgr,
     INumberControlMgr numberControlMgr,
     IOrderMgr orderManager,
     IOrderLocationTransactionMgr orderLocationTransactionMgr)
 {
     this.criteriaMgr = criteriaMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.userMgr = userMgr;
     this.huMgr = huMgr;
     this.numberControlMgr = numberControlMgr;
     this.orderManager = orderManager;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
 }
Exemplo n.º 28
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;
 }
Exemplo n.º 29
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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 31
0
 public RepackMgr(IRepackDao entityDao,
     ILocationLotDetailMgr locationLotDetailMgr,
     IHuMgr huMgr,
     IStorageBinMgr storageBinMgr,
     ILocationMgr locationMgr,
     INumberControlMgr numberControlMgr,
     IRepackDetailMgr repackDetailMgr,
     IUserMgr userMgr,
     IEntityPreferenceMgr entityPreferenceMgr)
     : base(entityDao)
 {
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.huMgr = huMgr;
     this.storageBinMgr = storageBinMgr;
     this.locationMgr = locationMgr;
     this.numberControlMgr = numberControlMgr;
     this.repackDetailMgr = repackDetailMgr;
     this.userMgr = userMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
 }
Exemplo n.º 32
0
 public RepackMgr(IRepackDao entityDao,
                  ILocationLotDetailMgr locationLotDetailMgr,
                  IHuMgr huMgr,
                  IStorageBinMgr storageBinMgr,
                  ILocationMgr locationMgr,
                  INumberControlMgr numberControlMgr,
                  IRepackDetailMgr repackDetailMgr,
                  IUserMgr userMgr,
                  IEntityPreferenceMgr entityPreferenceMgr)
     : base(entityDao)
 {
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.huMgr               = huMgr;
     this.storageBinMgr       = storageBinMgr;
     this.locationMgr         = locationMgr;
     this.numberControlMgr    = numberControlMgr;
     this.repackDetailMgr     = repackDetailMgr;
     this.userMgr             = userMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
 }
Exemplo n.º 33
0
 public ReturnMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IHuMgr huMgr,
     IFlowMgr flowMgr,
     IStorageBinMgr storageBinMgr,
     ILocationMgr locationMgr,
     ILocationLotDetailMgr locationLotDetailMgr
     )
 {
     this.setBaseMgr = setBaseMgr;
     this.setDetailMgr = setDetailMgr;
     this.executeMgr = executeMgr;
     this.huMgr = huMgr;
     this.flowMgr = flowMgr;
     this.storageBinMgr = storageBinMgr;
     this.locationMgr = locationMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
 }
Exemplo n.º 34
0
 public ReturnMgr(
     ISetBaseMgr setBaseMgr,
     ISetDetailMgr setDetailMgr,
     IExecuteMgr executeMgr,
     IHuMgr huMgr,
     IFlowMgr flowMgr,
     IStorageBinMgr storageBinMgr,
     ILocationMgr locationMgr,
     ILocationLotDetailMgr locationLotDetailMgr
     )
 {
     this.setBaseMgr           = setBaseMgr;
     this.setDetailMgr         = setDetailMgr;
     this.executeMgr           = executeMgr;
     this.huMgr                = huMgr;
     this.flowMgr              = flowMgr;
     this.storageBinMgr        = storageBinMgr;
     this.locationMgr          = locationMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
 }
Exemplo n.º 35
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;
 }
Exemplo n.º 36
0
 public WoReceiptInboundMgr(
     ICriteriaMgr criteriaMgr,
     IUomConversionMgr uomConversionMgr,
     IUserMgr userMgr,
     IHuMgr huMgr,
     INumberControlMgr numberControlMgr,
     IOrderMgr orderManager,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IDssImportHistoryMgr dssImportHistoryMgr,
     IGenericMgr genericMgr)
     : base(dssImportHistoryMgr, genericMgr)
 {
     this.criteriaMgr = criteriaMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.userMgr = userMgr;
     this.huMgr = huMgr;
     this.numberControlMgr = numberControlMgr;
     this.orderManager = orderManager;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.dssImportHistoryMgr = dssImportHistoryMgr;
 }
Exemplo n.º 37
0
 public WoReceiptInboundMgr(
     ICriteriaMgr criteriaMgr,
     IUomConversionMgr uomConversionMgr,
     IUserMgr userMgr,
     IHuMgr huMgr,
     INumberControlMgr numberControlMgr,
     IOrderMgr orderManager,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IDssImportHistoryMgr dssImportHistoryMgr,
     IGenericMgr genericMgr)
     : base(dssImportHistoryMgr, genericMgr)
 {
     this.criteriaMgr                 = criteriaMgr;
     this.uomConversionMgr            = uomConversionMgr;
     this.userMgr                     = userMgr;
     this.huMgr                       = huMgr;
     this.numberControlMgr            = numberControlMgr;
     this.orderManager                = orderManager;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.dssImportHistoryMgr         = dssImportHistoryMgr;
 }
Exemplo n.º 38
0
 public SetDetailMgr(
     IHuMgr huMgr,
     ILocationLotDetailMgr locationLotDetailMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IUserMgr userMgr,
     INumberControlMgr numberControlMgr,
     IUomConversionMgr uomConversionMgr,
     IItemMgr itemMgr,
     IOrderDetailMgr orderDetailMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IOrderMgr orderMgr,
     IFlowMgr flowMgr,
     ILocationMgr locationMgr,
     IProductLineInProcessLocationDetailMgr productLineInProcessLocationDetailMgr,
     IRoutingDetailMgr routingDetailMgr,
     IOrderHeadMgr orderHeadMgr,
     IInProcessLocationMgr inProcessLocationMgr,
     ICriteriaMgr criteriaMgr
     )
 {
     this.huMgr = huMgr;
     this.locationLotDetailMgr = locationLotDetailMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.userMgr = userMgr;
     this.numberControlMgr = numberControlMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.itemMgr = itemMgr;
     this.orderDetailMgr = orderDetailMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.orderMgr = orderMgr;
     this.flowMgr = flowMgr;
     this.locationMgr = locationMgr;
     this.productLineInProcessLocationDetailMgr = productLineInProcessLocationDetailMgr;
     this.routingDetailMgr = routingDetailMgr;
     this.orderHeadMgr = orderHeadMgr;
     this.inProcessLocationMgr = inProcessLocationMgr;
     this.criteriaMgr = criteriaMgr;
 }
Exemplo n.º 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;
 }
Exemplo n.º 40
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;
 }
Exemplo n.º 41
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;
 }
Exemplo n.º 42
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;
 }
Exemplo n.º 43
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;
 }
Exemplo n.º 44
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;
 }
Exemplo n.º 45
0
 public RepInsideBarCodeA4Mgr(String reportTemplateFolder, IHuMgr huMgr)
 {
     this.reportTemplateFolder = reportTemplateFolder;
     this.huMgr = huMgr;
 }
Exemplo n.º 46
0
 public RepBarCodeMgr(String reportTemplateFolder, IHuMgr huMgr, IItemReferenceMgr itemReferenceMgr)
 {
     this.reportTemplateFolder = reportTemplateFolder;
     this.huMgr = huMgr;
     this.itemReferenceMgr = itemReferenceMgr;
 }
Exemplo n.º 47
0
 public RepBarCodeA4Mgr(String reportTemplateFolder, IHuMgr huMgr)
 {
     this.reportTemplateFolder = reportTemplateFolder;
     this.huMgr = huMgr;
 }
Exemplo n.º 48
0
 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;
 }
Exemplo n.º 49
0
 public RepBarCodeMgr(String reportTemplateFolder, IHuMgr huMgr, IItemReferenceMgr itemReferenceMgr)
 {
     this.reportTemplateFolder = reportTemplateFolder;
     this.huMgr            = huMgr;
     this.itemReferenceMgr = itemReferenceMgr;
 }
Exemplo n.º 50
0
 public RepInsideBarCodeMgr(String reportTemplateFolder, IHuMgr huMgr)
 {
     this.reportTemplateFolder = reportTemplateFolder;;
     this.huMgr = huMgr;
 }