return getInfoLatestEvaluation(enrolment.getLatestEnrolmentEvaluation());
}
final private InfoEnrolmentEvaluation getInfoLatestEvaluation(final EnrolmentEvaluation latestEvaluation) {
final InfoEnrolmentEvaluation infolatestEvaluation = InfoEnrolmentEvaluation.newInfoFromDomain(latestEvaluation);
if (latestEvaluation.getPerson() != null) {
infolatestEvaluation.setInfoPerson(InfoPerson.newInfoFromDomain(latestEvaluation.getPerson()));
if (latestEvaluation.getPersonResponsibleForGrade() != null) {
infolatestEvaluation.setInfoPersonResponsibleForGrade(InfoPerson.newInfoFromDomain(latestEvaluation
.getPersonResponsibleForGrade()));
}
}
return infolatestEvaluation;