Agribusiness.Web.Controllers.TemplateController.Index C# (CSharp) Метод

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

public Index ( ) : System.Web.Mvc.ActionResult
Результат System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            var seminar = SiteService.GetLatestSeminar(Site);

            var templateList = _templateRepository.Queryable.Where(a=>a.IsActive);

            return View(templateList);
        }