// to represent a bank with bank accounts public class Bank { String bankName; //Bank Name ILoA accounts; //List of all accounts Bank(String bankName){ this.bankName = bankName; this.accounts = new MtLoA(); } // a separate method will add new accounts to the list of accounts }