Example #1
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 #2
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 #3
0
 public OrderDetailMgr(ICriteriaMgr criteriaMgr,
                       IOrderDetailDao entityDao,
                       IUomConversionMgr uomConversionMgr,
                       IBomMgr bomMgr,
                       IBomDetailMgr bomDetailMgr,
                       IRoutingDetailMgr routingDetailMgr,
                       IOrderOperationMgr orderOperationMgr,
                       IOrderLocationTransactionMgr orderLocationTransactionMgr,
                       IItemKitMgr itemKitMgr,
                       IItemReferenceMgr itemReferenceMgr,
                       ILocationMgr locationMgr,
                       ILocationDetailMgr LocationDetailMgr,
                       IPriceListDetailMgr priceListDetailMgr,
                       IEntityPreferenceMgr entityPreferenceMgr,
                       IFlowMgr flowMgr)
     : base(entityDao)
 {
     this.criteriaMgr                 = criteriaMgr;
     this.uomConversionMgr            = uomConversionMgr;
     this.bomMgr                      = bomMgr;
     this.bomDetailMgr                = bomDetailMgr;
     this.routingDetailMgr            = routingDetailMgr;
     this.orderOperationMgr           = orderOperationMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.itemKitMgr                  = itemKitMgr;
     this.itemReferenceMgr            = itemReferenceMgr;
     this.locationMgr                 = locationMgr;
     this.LocationDetailMgr           = LocationDetailMgr;
     this.priceListDetailMgr          = priceListDetailMgr;
     this.entityPreferenceMgr         = entityPreferenceMgr;
     this.flowMgr                     = flowMgr;
 }
 public InProcessLocationTrackMgr(IInProcessLocationTrackDao entityDao,
     IRoutingDetailMgr routingDetailMgr,
     ICriteriaMgr criteriaMgr)
     : base(entityDao)
 {
     this.routingDetailMgr = routingDetailMgr;
     this.criteriaMgr = criteriaMgr;
 }
 public OrderOperationMgr(IOrderOperationDao entityDao, 
     IRoutingDetailMgr routingDetailMgr,
     ICriteriaMgr criteriaMgr)
     : base(entityDao)
 {
     this.routingDetailMgr = routingDetailMgr;
     this.criteriaMgr = criteriaMgr;
 }
Example #6
0
 public OrderOperationMgr(IOrderOperationDao entityDao,
                          IRoutingDetailMgr routingDetailMgr,
                          ICriteriaMgr criteriaMgr)
     : base(entityDao)
 {
     this.routingDetailMgr = routingDetailMgr;
     this.criteriaMgr      = criteriaMgr;
 }
 public InProcessLocationTrackMgr(IInProcessLocationTrackDao entityDao,
                                  IRoutingDetailMgr routingDetailMgr,
                                  ICriteriaMgr criteriaMgr)
     : base(entityDao)
 {
     this.routingDetailMgr = routingDetailMgr;
     this.criteriaMgr      = criteriaMgr;
 }
Example #8
0
 public BomDetailMgr(IBomDetailDao entityDao,
     IBomMgr bomMgr,
     IItemKitMgr itemKitMgr,
     ICriteriaMgr criterialMgr,
     IUomConversionMgr uomConversionMgr,
     IRoutingMgr routingMgr,
     IRoutingDetailMgr routingDetailMgr,
     IItemMgr itemMgr)
     : base(entityDao)
 {
     this.bomMgr = bomMgr;
     this.itemMgr = itemMgr;
     this.criterialMgr = criterialMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.routingMgr = routingMgr;
     this.routingDetailMgr = routingDetailMgr;
 }
Example #9
0
 public BomDetailMgr(IBomDetailDao entityDao,
                     IBomMgr bomMgr,
                     IItemKitMgr itemKitMgr,
                     ICriteriaMgr criterialMgr,
                     IUomConversionMgr uomConversionMgr,
                     IRoutingMgr routingMgr,
                     IRoutingDetailMgr routingDetailMgr,
                     IItemMgr itemMgr)
     : base(entityDao)
 {
     this.bomMgr           = bomMgr;
     this.itemMgr          = itemMgr;
     this.criterialMgr     = criterialMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.routingMgr       = routingMgr;
     this.routingDetailMgr = routingDetailMgr;
 }
Example #10
0
 public MesBomDetailMgr(IMesBomDetailDao entityDao,
                        IMesBomMgr mesBomMgr,
                        IItemKitMgr itemKitMgr,
                        ICriteriaMgr criteriaMgr,
                        IUomConversionMgr uomConversionMgr,
                        IRoutingMgr routingMgr,
                        IRoutingDetailMgr routingDetailMgr,
                        IItemMgr itemMgr,
                        IUserMgr useMgr)
     : base(entityDao)
 {
     this.mesBomMgr        = mesBomMgr;
     this.itemMgr          = itemMgr;
     this.criteriaMgr      = criteriaMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.routingMgr       = routingMgr;
     this.routingDetailMgr = routingDetailMgr;;
     this.useMgr           = useMgr;
 }
Example #11
0
 public MesBomDetailMgr(IMesBomDetailDao entityDao,
     IMesBomMgr mesBomMgr,
     IItemKitMgr itemKitMgr,
     ICriteriaMgr criteriaMgr,
     IUomConversionMgr uomConversionMgr,
     IRoutingMgr routingMgr,
     IRoutingDetailMgr routingDetailMgr,
     IItemMgr itemMgr,
     IUserMgr useMgr)
     : base(entityDao)
 {
     this.mesBomMgr = mesBomMgr;
     this.itemMgr = itemMgr;
     this.criteriaMgr = criteriaMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.routingMgr = routingMgr;
     this.routingDetailMgr = routingDetailMgr;;
     this.useMgr = useMgr;
 }
Example #12
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;
 }
Example #13
0
 public OrderDetailMgr(ICriteriaMgr criteriaMgr,
     IOrderDetailDao entityDao,
     IUomConversionMgr uomConversionMgr,
     IBomMgr bomMgr,
     IBomDetailMgr bomDetailMgr,
     IRoutingDetailMgr routingDetailMgr,
     IOrderOperationMgr orderOperationMgr,
     IOrderLocationTransactionMgr orderLocationTransactionMgr,
     IItemKitMgr itemKitMgr,
     IItemReferenceMgr itemReferenceMgr,
     ILocationMgr locationMgr,
     ILocationDetailMgr LocationDetailMgr,
     IPriceListDetailMgr priceListDetailMgr,
     IEntityPreferenceMgr entityPreferenceMgr,
     IFlowMgr flowMgr)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.uomConversionMgr = uomConversionMgr;
     this.bomMgr = bomMgr;
     this.bomDetailMgr = bomDetailMgr;
     this.routingDetailMgr = routingDetailMgr;
     this.orderOperationMgr = orderOperationMgr;
     this.orderLocationTransactionMgr = orderLocationTransactionMgr;
     this.itemKitMgr = itemKitMgr;
     this.itemReferenceMgr = itemReferenceMgr;
     this.locationMgr = locationMgr;
     this.LocationDetailMgr = LocationDetailMgr;
     this.priceListDetailMgr = priceListDetailMgr;
     this.entityPreferenceMgr = entityPreferenceMgr;
     this.flowMgr = flowMgr;
 }