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; }
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; }