Created an Application to handle new customer bank account requests.
- Read a .csv of names, social security numbers, account type, and initial deposit
- Used data structures to store all those accounts.
Savings and Checking accounts share the following properties:
- deposit()
- withdraw()
- transfer()
- showInfo(): This will reveal relevant account information as well as information specific to Checking and Savings account.
Both accounts will use an interface that determines the base interest rate.
- Savings accounts will use .25 points less than the base interest rate
- Checking accounts will use 15% of the base rate