* @return True if the given user is Customer.
*/
public boolean isCustomer(String login, String password) throws DAOException {
boolean success = false;
AbstractDAOFactory daoFactory = Controller.getDAOFactory();
CustomerAccountDAO customerAccountDAO = daoFactory.getCustomerAccountDAO();
success = customerAccountDAO.existCustomerAccount(login, password);
return success;
}