コード例 #1
0
 public InvoiceProcessingService(
     ILog log,
     ITransactionManager transactionManager,
     IRetailerDemListRepository retailerDemListRepository,
     IRetailerProxy retailerProxy,
     IProductsProxy productsProxy)
 {
     this.log = log;
     this.transactionManager        = transactionManager;
     this.retailerDemListRepository = retailerDemListRepository;
     this.retailerProxy             = retailerProxy;
     this.productsProxy             = productsProxy;
 }
コード例 #2
0
 public DemStockService(
     ITransactionManager transactionManager,
     IRetailerDemListRepository retailerDemListRepository,
     IRetailerProxy retailerProxy,
     ISalesRegionProxy salesRegionProxy,
     IProductsProxy productsProxy)
 {
     this.transactionManager        = transactionManager;
     this.retailerDemListRepository = retailerDemListRepository;
     this.retailerProxy             = retailerProxy;
     this.salesRegionProxy          = salesRegionProxy;
     this.productsProxy             = productsProxy;
 }