Hello everybody,
I'm writing a simple code for ATM, but as I have never worked with a user's input, I'm not sure where to start.
I have written 3 classes
Now I have to write a call where everything runs:
displayAccountInformation()
Displays a BankCustomer's account information if the customer has been previously verified.
void
initialize()
Adds Customer references to the Back HashMap as seed data for
testing.
static void
main(java.lang.String[] args)
Main method calls the class default constructor.
void
run()
The primary application processor.
void
transactDeposit()
Performs a deposit into a BankCustomer's account.
void
transactWithdraw()
Performs a withdrawal from a BankCustomer's account.
void
verifyCustomer()
To confirm a BankCustomer's account number and passcode
and these are all methods that I have to use.
Thank you!