
Create JAVA program to model a simple part of banking system. You will have three classes: Balance, Bank, and Transaction. Create a Balance class:
With private attributes: 1. balance (double) 2. accountNo (int) 3. date (Date) [using Date class as in the lectures]
With the following methods 1. No-argument constructor 2. User define constructors 3. Getter and setter methods for all attributes. 4. Override the method toString
Create a TransactionType enum: Withdraw, Deposite, and ShowInfo