Exemplo n.º 1
0
 public OrderService(IRepository repository, ICurrentRequestDataProvider currentRequestDataProvider, IDiscountCalculator discountCalculator)
 {
     this.repository = repository;
     this.currentRequestDataProvider = currentRequestDataProvider;
     this.discountCalculator         = discountCalculator;
 }
Exemplo n.º 2
0
 public OrderService(IRepository repository, ICurrentRequestDataProvider currentRequestDataProvider)
 {
     this.repository = repository;
     this.currentRequestDataProvider = currentRequestDataProvider;
 }