public CustomAccountBean addNewRegisteredUser(String userId,
String password, String fullName, String address, String email,
String creditcard, BigDecimal openBalance) throws DAOException {
CustomerDAO customerDAO = factory.getCustomerDAO();
CustomAccountProfileBean customerProfile = new CustomAccountProfileBean(
userId, password, fullName, address, email, creditcard);
customerDAO.insertAccountProfile(customerProfile);
CustomAccountBean customer = new CustomAccountBean(0, userId, Calendar
.getInstance(), openBalance, 0, openBalance, Calendar
.getInstance(), 0);