Exemplo n.º 1
0
        public void PayCustomerHandler(PayCustomer payCustomer)
        {
            var account = accountRepository.GetAccountByCustomerId(payCustomer.CustomerId);

            account.MakePayment(payCustomer.Amount);
        }
Exemplo n.º 2
0
 public void PayCustomerHandler(PayCustomer payCustomer)
 {
     var account = accountRepository.GetAccountByCustomerId(payCustomer.CustomerId);
     account.MakePayment(payCustomer.Amount);
 }