コード例 #1
0
ファイル: ItemMgr.cs プロジェクト: Novthirteen/yfkey-scms
 public ItemMgr(IItemDao entityDao, ICriteriaMgr criteriaMgr, IItemKitMgr itemKitMgr, ISqlHelperDao sqlHelperDao)
     : base(entityDao)
 {
     this.criteriaMgr = criteriaMgr;
     this.itemKitMgr = itemKitMgr;
     this.sqlHelperDao = sqlHelperDao;
 }
コード例 #2
0
ファイル: ItemMgr.cs プロジェクト: Novthirteen/yfkey-scms
 public ItemMgr(IItemDao entityDao, ICriteriaMgr criteriaMgr, IItemKitMgr itemKitMgr, ISqlHelperDao sqlHelperDao)
     : base(entityDao)
 {
     this.criteriaMgr  = criteriaMgr;
     this.itemKitMgr   = itemKitMgr;
     this.sqlHelperDao = sqlHelperDao;
 }
コード例 #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;
 }
コード例 #4
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;
 }
コード例 #5
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;
 }
コード例 #6
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;
 }
コード例 #7
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;
 }
コード例 #8
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;
 }
コード例 #9
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;
 }