Agent-Banks / assignments

Assignments for Suncoast Developers Guild
0 stars 0 forks source link

02 - 03 - First Bank of Suncoast - #7

Closed Agent-Banks closed 4 years ago

Agent-Banks commented 4 years ago

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(or JSON) 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

Agent-Banks commented 4 years ago

https://github.com/codyb23/FirstBanksOfSuncoast

Agent-Banks commented 4 years ago

Your homework 02 - 03 - First Bank of Suncoast - was marked: Meets Expectations

Great job!

“Great job!” — via Jason L Perry

gstark commented 4 years ago

Great job!

This code here is great, but can be simplified. I may show this when reviewing the homework, or come ask myself or Jordan how to simplify the code.

https://github.com/codyb23/FirstBanksOfSuncoast/blob/master/Program.cs#L42-L45 - Think about having ComputeCheckingAccountBalance return the computed value. Then you can just use the result of calling that method to output the balance.

No blank lines here or here or here or here or here or here -- etc. continue through the rest of the code.

Blank line before here and here and here and similar