Example #1
0
 public IEnumerable <Professor> Get()
 {
     return(_ProfessorRepository.GetAll());
 }
Example #2
0
 // GET: Professor
 public ActionResult Index()
 {
     return(View(_professorRepository.GetAll()));
 }