Catbert4.Controllers.SchoolController.Index C# (CSharp) Метод

Index() публичный Метод

public Index ( ) : System.Web.Mvc.ActionResult
Результат System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            var schoolList = _schoolRepository.Queryable;

            return View(schoolList.ToList());
        }