public void RegisterNewStudent(Student toRegister)
 {
     if (studentValidator.ValidateStudent(toRegister))
     {
         studentRepository.Save(toRegister);
     }
     else
     {
         throw new Exception($"Invalid student: {toRegister}.");
     }
 }