コード例 #1
0
 public OrderManager(GlobalConfig.DB.FromType fromType = GlobalConfig.DB.FromType.Write)
 {
     _operationLogManager       = new OperationLogManager();
     _goodsOrderDal             = new DAL.Implement.Order.GoodsOrder(fromType);
     _goodsOrderDetail          = OrderInstance.GetGoodsOrderDetailDao(fromType);
     _goodsCenterSao            = new GoodsCenterSao();
     _promotionSao              = new PromotionSao();
     _reckoning                 = new Reckoning(fromType);
     _asynStorageRecordDao      = new ASYNStorageRecordDao(fromType);
     _goodsStockSettleRecordBll = new GoodsStockRecordDao();
     _invoice = new Invoice(fromType);
     _realTimeGrossSettlementDal = new RealTimeGrossSettlementDal(fromType);
 }
コード例 #2
0
 public SaleOrderGoodsSettlementManager(GlobalConfig.DB.FromType fromType = GlobalConfig.DB.FromType.Write)
 {
     _saleOrderGoodsSettlementDal = new SaleOrderGoodsSettlementDal(fromType);
     _realTimeGrossSettlementDal  = new RealTimeGrossSettlementDal(fromType);
 }
コード例 #3
0
 public RealTimeGrossSettlementManager(GlobalConfig.DB.FromType fromType = GlobalConfig.DB.FromType.Write)
 {
     _realTimeGrossSettlementDal = new RealTimeGrossSettlementDal(fromType);
     _storageDao = new StorageRecordDao(fromType);
     _redDao     = new DocumentRedDao(fromType);
 }