https://github.com/csaba79-coder/bankingappbytimbuchalkaudemy
Creating a Banking App to use some kind of Collections
https://github.com/csaba79-coder/bankingappbytimbuchalkaudemy
Last synced: about 1 year ago
JSON representation
Creating a Banking App to use some kind of Collections
- Host: GitHub
- URL: https://github.com/csaba79-coder/bankingappbytimbuchalkaudemy
- Owner: Csaba79-coder
- License: mit
- Created: 2022-02-27T10:43:58.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-28T13:15:32.000Z (about 4 years ago)
- Last Synced: 2023-03-04T23:25:37.226Z (about 3 years ago)
- Language: Java
- Homepage: https://www.udemy.com/course/java-the-complete-java-developer-course/
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Banking Application By Tim Buchalka Udemy video!
// You job is to create a simple banking application.
// There should be a Bank class
// It should have an arraylist of Branches
// Each Branch should have an arraylist of Customers
// The Customer class should have an arraylist of Doubles (transactions)
// Customer:
// Name, and the ArrayList of doubles.
// Branch:
// Need to be able to add a new customer and initial transaction amount.
// Also needs to add additional transactions for that customer/branch
// Bank:
// Add a new branch
// Add a customer to that branch with initial transaction
// Add a transaction for an existing customer for that branch
// Show a list of customers for a particular branch and optionally a list
// of their transactions
// Demonstration autoboxing and unboxing in your code
// Hint: Transactions
// Add data validation.
// e.g. check if exists, or does not exist, etc.
// Think about where you are adding the code to perform certain actions