public CustomerCashController(ICustomerCashRepository customerCashRepository) { this.customerCashRepository = customerCashRepository; }
public PaymentService(ICreditCardService creditCardService, ICustomerCashRepository customerCashRepository, IMachineCashRepository machineCashRepository) { this.creditCardService = creditCardService; this.customerCashRepository = customerCashRepository; this.machineCashRepository = machineCashRepository; }