* @ejb:interface-method view-type="remote"
**/
public CustomerData createCustomer( String pBankId, String pName, float pInitialDeposit )
throws CreateException, RemoteException
{
Customer lCustomer = getCustomerHome().create(
pBankId,
pName
);
CustomerData lNew = lCustomer.getData();
getAccountHome().create().createAccount(
lNew.getId(),
Constants.CHECKING,
pInitialDeposit
);