CustomerDAO customerDAO = factory.getCustomerDAO();
return customerDAO.getAccountProfileData(userId);
}
public List<CustomOrderBean> getOrders(String userId) throws DAOException {
CustomerDAO customerDAO = factory.getCustomerDAO();
return customerDAO.getOrders(userId, false,
StockTraderUtility.MAX_QUERY_TOP_ORDERS,
StockTraderUtility.MAX_QUERY_ORDERS);
}