- Added BankAcctAppGUI as a GUI frontend to replace CLI
- Enhanced DataEntry to use Regex patterns for input validation
This commit is contained in:
ds.731
2025-01-02 16:09:30 -06:00
parent 4973d45198
commit a53bfef53e
22 changed files with 957 additions and 101 deletions

View File

@@ -1,4 +1,4 @@
/* Phase III */
/* Phase IV */
package bankAcctApp;
@@ -10,6 +10,7 @@ public class BankAcctApp {
ArrayList<Customer> customers = new ArrayList<>();
ArrayList<Account> accounts = new ArrayList<>();
new BankAcctAppGUI(customers, accounts);
boolean moreCustomers = true;
// Add customers and accounts