use of com.tomasio.projects.trainning.model.GrupoAreaConhecimento in project trainning by fernandotomasio.
the class TeachingDocumentsServiceSimpleImpl method findAllGruposAreaConhecimento.
@Override
@Transactional(readOnly = true)
public GrupoAreaConhecimentoDTO[] findAllGruposAreaConhecimento() {
AreaConhecimentoDAO dao = factory.getAreaConhecimentoDAO();
GrupoAreaConhecimentoDTO[] gruposArray = null;
try {
List<GrupoAreaConhecimento> grupos = dao.findAllGruposAreaConhecimento();
if (grupos != null) {
gruposArray = new GrupoAreaConhecimentoDTO[grupos.size()];
for (int i = 0; i < grupos.size(); i++) {
gruposArray[i] = grupos.get(i).createDTO();
}
}
} catch (DAOException ex) {
throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
}
return gruposArray;
}
Aggregations