use of com.tomasio.projects.trainning.dao.MatriculaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method findMatriculaByIndicacaoId.
@Override
@Transactional(readOnly = true)
public MatriculaDTO findMatriculaByIndicacaoId(Long indicacaoId) {
MatriculaDAO dao = factory.getMatriculaDAO();
Matricula matricula = null;
try {
matricula = dao.findByIndicacaoId(indicacaoId);
} 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());
}
if (matricula != null) {
return matricula.createDTO();
} else {
return null;
}
}
use of com.tomasio.projects.trainning.dao.MatriculaDAO in project trainning by fernandotomasio.
the class AtividadesEnsinoServiceSimpleImpl method createMatricula.
@Override
@Transactional
public Long createMatricula(MatriculaDTO matricula) {
MatriculaDAO matriculaDAO = factory.getMatriculaDAO();
IndicacaoDAO indicacaoDAO = factory.getIndicacaoDAO();
TurmaDAO turmaDAO = factory.getTurmaDAO();
Matricula _matricula = null;
if (matricula != null) {
if (matricula instanceof MatriculaAlunoDTO) {
_matricula = new MatriculaAluno((MatriculaAlunoDTO) matricula);
} else {
_matricula = new MatriculaInstrutor((MatriculaInstrutorDTO) matricula);
}
}
Long id = null;
try {
Indicacao _indicacao = _matricula.getIndicacao();
TurmaEfetiva _turma = _matricula.getTurma();
id = matriculaDAO.create(_matricula);
_indicacao.setMatriculado(true);
_turma.setAtivado(true);
indicacaoDAO.update(_indicacao);
turmaDAO.update(_turma);
} 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 id;
}
use of com.tomasio.projects.trainning.dao.MatriculaDAO 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.dao.MatriculaDAO 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.dao.MatriculaDAO 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;
}
Aggregations