@Override
 public Instructor saveInstructor(Instructor instructorToSave) {
   return instructorRepository.saveInstructor(instructorToSave);
 }
 @Override
 public Instructor saveInstructor(String forename, String surname, String adiCode) {
   return instructorRepository.saveInstructor(forename, surname, adiCode);
 }