Examples of Absentee


Examples of net.sf.esims.model.valueobject.Absentee

      throw new RuntimeException("AttendanceService:saveAttendance | Could not get the list of student ids");
    }
   
    logger.info("AttendanceService:saveAttendance | Creating instances of Absentees & saving");
    List<Absentee> absentees =new ArrayList<Absentee>();
    Absentee absentee;
    for(Long studentId: studentIds){
      absentee = new Absentee(studentId,standardId,divisionId,dateOfAbsence);
      absentees.add(absentee);
    }
    this.attendanceDAO.markAsAbsent(absentees);
    logger.info("AttendanceService:saveAttendance | Absentees saved succesfully");
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.