|
@@ -101,6 +101,7 @@ public class ExamStudentService {
|
|
|
public Page<ExamStudent> getAllExamStudent(ExamStudentDTO examCriteria, Pageable pageable){
|
|
|
Specification<ExamStudent> specification = getPageSpecification(examCriteria);
|
|
|
Page<ExamStudent> examStudents = examStudentRepo.findAll(specification,pageable);
|
|
|
+ processExamStudent(examStudents.getContent());
|
|
|
return examStudents;
|
|
|
}
|
|
|
|