Closed piercebhunt closed 4 years ago
Your homework 02 - 03 - First Bank of Suncoast - was marked: Acceptable
“Not Bad”
I'm accepting this homework even though it is very much a replica of my walkthrough of an implementation. I hope the review cleared up the questions you had on this assignment and you were able to follow and understand the code.
For this assignment, you will be creating your own personal bank account manager. You will be creating an app that will let you track both a savings account and a checking account total by performing transactions, such as withdrawals, deposits, and transfers. The application will also save your information in a file so you can track your account totals over time.
Objectives
Requirements
Create a console app that allows a user to manage a banking account.
As user should be able to make transactions against their accounts.
The transaction information should be stored in a file, using a
CSV
(orJSON
) format to record the data.Balances will be computed by determining the cumulative effect of all the transactions in order. For instance, if a user deposits 10 to their savings account and then withdraws 8 from their savings account, their balance is computed as 2.
Explorer Mode
Adventure Mode
Epic Mode
Additional Resources
.NET
.NET Documentation
CsvHelper