use of com.tomasio.projects.trainning.model.ItemConviteInstrutorPerfil in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllItensConviteInstrutorPerfilByConviteInstrutorPerfilId.
@Override
@Transactional(readOnly = true)
public ItemConviteInstrutorPerfilDTO[] findAllItensConviteInstrutorPerfilByConviteInstrutorPerfilId(Long convite) {
ItemConviteInstrutorPerfilDAO dao = factory.getItemConviteInstrutorPerfilDAO();
ItemConviteInstrutorPerfilDTO[] itensConviteArray;
try {
List<ItemConviteInstrutorPerfil> itens = dao.findAllByConviteId(convite);
itensConviteArray = new ItemConviteInstrutorPerfilDTO[itens.size()];
for (int i = 0; i < itensConviteArray.length; i++) {
itensConviteArray[i] = itens.get(i).createDTO();
}
return itensConviteArray;
} catch (DAOException ex) {
Logger.getLogger(AtividadesEnsinoServiceSimpleImpl.class.getName()).log(Level.SEVERE, null, ex);
throw new CoreException(ex.getMessage());
}
}
Aggregations