for (Registration registration : foundStudent.getAllRegistrations()) {
for (Enrolment enrolment : registration.getEnrolments(executionSemester)) {
final ExecutionCourse executionCourse = enrolment.getExecutionCourseFor(executionSemester);
String grade = enrolment.getGrade().getValue();
double ects = enrolment.getEctsCredits();
enrolments.add(new FenixEnrolment(executionCourse, grade, ects));
}
}
}