use of com.tomasio.projects.trainning.dto.MatriculaDTO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllMatriculasAlunosDaOM.
@Override
@Transactional(readOnly = true)
public MatriculaDTO[] findAllMatriculasAlunosDaOM(Long organizacaoId, Date exercicio, String search) {
MatriculaDAO dao = factory.getMatriculaDAO();
MatriculaDTO[] matriculasArray = null;
try {
List<Matricula> matriculas = dao.findAllAlunosDaOM(organizacaoId, exercicio, search);
if (matriculas != null) {
matriculasArray = new MatriculaDTO[matriculas.size()];
for (int i = 0; i < matriculas.size(); i++) {
matriculasArray[i] = matriculas.get(i).createDTOWithoutDependencies();
}
}
} 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());
}
return matriculasArray;
}
use of com.tomasio.projects.trainning.dto.MatriculaDTO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllMatriculasAlunosNaoApresentados.
@Override
@Transactional(readOnly = true)
public MatriculaDTO[] findAllMatriculasAlunosNaoApresentados(Long turmaId) {
MatriculaDAO dao = factory.getMatriculaDAO();
MatriculaDTO[] matriculasArray = null;
try {
List<Matricula> matriculas = dao.findAllAlunosNaoApresentados(turmaId);
Integer tammat = matriculas.size();
if (matriculas != null) {
matriculasArray = new MatriculaDTO[matriculas.size()];
for (int i = 0; i < matriculas.size(); i++) {
matriculasArray[i] = matriculas.get(i).createDTOWithoutDependencies();
}
}
} 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());
}
return matriculasArray;
}
use of com.tomasio.projects.trainning.dto.MatriculaDTO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllMatriculasInstrutores.
@Override
@Transactional(readOnly = true)
public MatriculaDTO[] findAllMatriculasInstrutores(Long turmaId) {
MatriculaDAO dao = factory.getMatriculaDAO();
MatriculaDTO[] matriculasArray = null;
try {
List<Matricula> matriculas = dao.findAllInstrutores(turmaId);
if (matriculas != null) {
matriculasArray = new MatriculaDTO[matriculas.size()];
for (int i = 0; i < matriculas.size(); i++) {
matriculasArray[i] = matriculas.get(i).createDTOWithoutDependencies();
}
}
} 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());
}
return matriculasArray;
}
use of com.tomasio.projects.trainning.dto.MatriculaDTO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllMatriculasAlunos.
@Override
@Transactional(readOnly = true)
public MatriculaDTO[] findAllMatriculasAlunos(Long turmaId) {
MatriculaDAO dao = factory.getMatriculaDAO();
MatriculaDTO[] matriculasArray = null;
try {
List<Matricula> matriculas = dao.findAllAlunos(turmaId);
if (matriculas != null) {
matriculasArray = new MatriculaDTO[matriculas.size()];
for (int i = 0; i < matriculas.size(); i++) {
matriculasArray[i] = matriculas.get(i).createDTOWithoutDependencies();
}
}
} 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());
}
return matriculasArray;
}
use of com.tomasio.projects.trainning.dto.MatriculaDTO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findAllMatriculasAlunosApresentadosNaoConcluidos.
@Override
@Transactional(readOnly = true)
public MatriculaDTO[] findAllMatriculasAlunosApresentadosNaoConcluidos(Long turmaId) {
MatriculaDAO dao = factory.getMatriculaDAO();
MatriculaDTO[] matriculasArray = null;
try {
List<Matricula> matriculas = dao.findAllAlunosApresentadosNaoConcluidos(turmaId);
if (matriculas != null) {
matriculasArray = new MatriculaDTO[matriculas.size()];
for (int i = 0; i < matriculas.size(); i++) {
matriculasArray[i] = matriculas.get(i).createDTOWithoutDependencies();
}
}
} 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());
}
return matriculasArray;
}
Aggregations