@Override
protected void execute(PrevalentSystem system) throws BusinessException {
Student student = (Student) system.getPeople().get(studentId).getPersonType("student");
if(student != null)
student.addOccurrence(new Occurrence(system.getPeople().get(attendenceId), date, occurrenceDescription));
}
}