// to represent a bank with customers and accounts public class Bank { String bankName; //Bank Name AccountList accounts; //List of accounts CustomerList customers; //List of customers }