use of com.tomasio.projects.trainning.dao.NotificacaoMatriculaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method createNotificacaoMatricula.
@Override
@Transactional
public Long createNotificacaoMatricula(NotificacaoMatriculaDTO notificacaoMatricula) {
NotificacaoMatriculaDAO dao = factory.getNotificacaoMatriculaDAO();
Long id = null;
NotificacaoMatricula _notificacaoMatricula = null;
// cria um registro na tabela CancelamentoMatricula
if (notificacaoMatricula != null) {
_notificacaoMatricula = new NotificacaoMatricula(notificacaoMatricula);
}
try {
id = dao.create(_notificacaoMatricula);
} catch (DAOException ex) {
ex.printStackTrace();
throw new CoreException(ex.getMessage());
} catch (Exception ex) {
ex.printStackTrace();
throw new CoreException("Erro em tempo de execução: " + ex.getMessage());
// throw new CoreException(ex.getMessage());
}
return id;
}
Aggregations