// is what we are here working with primarly
CustomerData lCustomerData = lTeller.createCustomer( lBankData.getId(), "One", 100 );
CustomerData lCustomerData2 = lTeller.getCustomer( lCustomerData.getId() );
Collection lCustomers = lTeller.getCustomers( lBankData.getId() );
AccountData lAccountData = lTeller.createAccount( lCustomerData.getId(), Constants.SAVING, 150 );
AccountData lAccountData2 = lTeller.getAccount( lCustomerData.getId(), Constants.SAVING );
AccountData lAccountData3 = lTeller.getAccount( lAccountData.getId() );
AccountData lAccountData4 = lTeller.getAccount( lCustomerData.getId(), Constants.CHECKING );
Collection lAccounts = lTeller.getAccounts( lCustomerData.getId() );