Example #1
0
    public void Transfer(AccountThree toAccount, Decimal amount)
    {
        this.Withdraw(amount);

        toAccount.Deposit(amount);
    }