throws DAOException {
if (logger.isDebugEnabled()) {
logger.debug("OrderDAO.updateAccountBalance(int,BigDecimal)\nAccount ID :" + accountId + "\nTotal :" + total);
}
DAOFactory fac = MSSQLDAOFactory.getInstance();
CustomerDAO customerDAO = fac.getCustomerDAO();
customerDAO.updateAccountBalance(accountId, total);
}