use of com.tomasio.projects.trainning.dao.ItemConviteInstrutorIndividualDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method createItemConviteInstrutorIndividual.
@Override
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
@Transactional
public Long createItemConviteInstrutorIndividual(ItemConviteInstrutorIndividualDTO itemConvite) {
ItemConviteInstrutorIndividualDAO dao = factory.getItemConviteInstrutorIndividualDAO();
ItemConviteInstrutorIndividual model = new ItemConviteInstrutorIndividual(itemConvite);
try {
Long id = dao.create(model);
return id;
} catch (DAOException ex) {
Logger.getLogger(AtividadesEnsinoServiceSimpleImpl.class.getName()).log(Level.SEVERE, null, ex);
throw new CoreException(ex.getMessage());
} catch (Exception ex) {
Logger.getLogger(AtividadesEnsinoServiceSimpleImpl.class.getName()).log(Level.SEVERE, null, ex);
throw new CoreException("Erro em tempo de execução: " + ex.getMessage());
}
}
Aggregations