コード例 #1
0
ファイル: Account.cs プロジェクト: egnsh93/CST8253
        public TransactionResult Deposit(DepositTransaction depositTransaction)
        {
            // Add the deposit amount to the balance
            _balance += depositTransaction.GetAmount();

            // Add the transaction to the list
            _transactionHistory.Add(depositTransaction);

            return TransactionResult.Success;
        }