Esempio n. 1
0
 public SalesAccountService(
     ITransactionManager transactionManager,
     ISalesAccountRepository salesAccountRepository,
     IDiscountingService discountingService,
     ISalesAccountUpdatedDispatcher salesAccountUpdatedDispatcher)
 {
     this.transactionManager            = transactionManager;
     this.salesAccountRepository        = salesAccountRepository;
     this.discountingService            = discountingService;
     this.salesAccountUpdatedDispatcher = salesAccountUpdatedDispatcher;
 }
 public ProposedTurnoverBandService(
     IProposedTurnoverBandRepository proposedTurnoverBandRepository,
     ISalesAccountRepository salesAccountRepository,
     ISalesReportingService salesReportingService,
     IDiscountingService discountingService)
 {
     this.proposedTurnoverBandRepository = proposedTurnoverBandRepository;
     this.salesAccountRepository         = salesAccountRepository;
     this.salesReportingService          = salesReportingService;
     this.discountingService             = discountingService;
 }