// GET: Instructor
        public ActionResult Index()
        {
            List <Instructor> instructors = InstructorRepository.GetAllInstructors();

            return(View(instructors));
        }