//******************************************************************** // Banking.java Author: Sophie Quigley // // Let's do some banking at The Bank. // //******************************************************************** public class Banking4 { public static void main (String[] args) { // Create some customers Customer4 me = new Customer4("Sophie Quigley", "416-979-5000X7401", "quigley@ryerson.ca"); Customer4 customer2 = new Customer4("Funny Name", "905-111-2222", "funnyname@yahoo.com"); Customer4 customer3 = new Customer4("Who Knows","514-333-4444","whoknows@sympatico.ca"); //Give them 2 accounts each Account4 account1 = new Account4(me); Account4 account2 = new Account4(me); Account4 account3 = new Account4(customer2); Account4 account4 = new Account4(customer2); Account4 account5 = new Account4(customer3); Account4 account6 = new Account4(customer3); //Get a description of the accounts account1.WhoAmI(); account2.WhoAmI(); account3.WhoAmI(); account4.WhoAmI(); account5.WhoAmI(); account6.WhoAmI(); } }