public void Withdraw(int funds) { Amount depositAmount = new Amount(funds); _transactionLedger.Withdraw(depositAmount); }
public void Deposit(int funds) { Amount depositAmount = new Amount(funds); _transactionLedger.Deposit(depositAmount); }