//******************************************************************** // Account.java Author: Sophie Quigley // // Account class describes bank accounts // //******************************************************************** public class Account1 { public int accountID; private int balance; private Customer1 customer; }