Date evaluationDate, String reason, Person person) throws InvalidArgumentsServiceException {
if (markSheet == null) {
throw new InvalidArgumentsServiceException();
}
CurricularCourse curricularCourse = markSheet.getCurricularCourse();
return curricularCourse.rectifyEnrolmentEvaluation(markSheet, enrolmentEvaluation, evaluationDate, newGrade, reason,
person);
}
}