public CustomerCashController(ICustomerCashRepository customerCashRepository)
 {
     this.customerCashRepository = customerCashRepository;
 }
Exemplo n.º 2
0
 public PaymentService(ICreditCardService creditCardService, ICustomerCashRepository customerCashRepository, IMachineCashRepository machineCashRepository)
 {
     this.creditCardService      = creditCardService;
     this.customerCashRepository = customerCashRepository;
     this.machineCashRepository  = machineCashRepository;
 }