return new ArrayList<FenixCourseEvaluation.WrittenEvaluation>();
}
new JerseyFacesContext(context, request, response);
DisplayEvaluationsForStudentToEnrol manageEvaluationsForStudents = new DisplayEvaluationsForStudentToEnrol();
List<FenixCourseEvaluation.WrittenEvaluation> evaluations = new ArrayList<>();
evaluations.addAll(processEvaluation(manageEvaluationsForStudents.getEnroledEvaluations(), true, student));
evaluations.addAll(processEvaluation(manageEvaluationsForStudents.getAllNotEnroledEvaluations(), false, student));
return evaluations;
}