Beispiel #1
0
 public void WithdrawFunds(CustomerDetails customer, IAccounts account)
 {
     AccountTransactions.Withdraw(customer, 1000, account);
 }
Beispiel #2
0
 public void TransferFunds(CustomerDetails customer, IAccounts account)
 {
     AccountTransactions.Transfer(customer, 1000, account);
 }
Beispiel #3
0
 public void MakeInitialDeposit(CustomerDetails customer, IAccounts account)
 {
     AccountTransactions.InitialDeposit(customer, 100, account);
 }
Beispiel #4
0
 public void GetStatement(CustomerDetails customer, IAccounts account)
 {
     AccountTransactions.GetStatement(customer, account);
 }
Beispiel #5
0
 public void GetBalance(CustomerDetails customer, IAccounts account)
 {
     AccountTransactions.GetBalance(customer, account);
 }
Beispiel #6
0
 public void DepositFunds(CustomerDetails customer, IAccounts account)
 {
     AccountTransactions.Deposit(customer, account);
 }