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() );
lTeller.deposit( lAccountData4.getId(), 75 );
lTeller.withdraw( lAccountData3.getId(), 63 );
lTeller.transfer( lAccountData4.getId(), lAccountData3.getId(), 52 );
lTeller.removeAccount( lAccountData4.getId() );
lTeller.removeAccount( lAccountData.getId() );