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