Badges.Areas.Admin.Controllers.InstructorController.Index C# (CSharp) Method

Index() public method

public Index ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            var instructorList = RepositoryFactory.InstructorRepository.Queryable;

            return View(instructorList.ToList());
        }