use of com.tomasio.projects.trainning.model.ItemConviteInstrutorIndividual in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findItemConviteInstrutorIndividual.
@Override
@SuppressWarnings({ "BroadCatchBlock", "TooBroadCatch" })
@Transactional(readOnly = true)
public ItemConviteInstrutorIndividualDTO findItemConviteInstrutorIndividual(Long itemConviteId) {
ItemConviteInstrutorIndividualDAO dao = factory.getItemConviteInstrutorIndividualDAO();
ItemConviteInstrutorIndividual itemConvite = null;
try {
itemConvite = dao.find(itemConviteId);
} 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());
}
if (itemConvite != null) {
return itemConvite.createDTO();
} else {
return null;
}
}
use of com.tomasio.projects.trainning.model.ItemConviteInstrutorIndividual 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