public Instructor GetInstructorInfo(int instructorId) { var service = new InstructorService(new InstructorRepository()); var errors = new List <string>(); return(service.GetInstructorInfo(instructorId, ref errors)); }