Esempio n. 1
0
 private int countPastServices(Teacher teacher) {
   int count = 0;
   for (TeacherService teacherService : teacher.getTeacherServices()) {
     if (teacherService.getPastService() != null) {
       count++;
     }
   }
   return count;
 }