public void AddAbsence([FromRoute] string studentId, [FromBody] AbsenceInputModel absenceModel)
 {
     _studentService.AddAbsenceToStudent(studentId, absenceModel);
 }