Agribusiness.Web.Controllers.TemplateController.Index C# (CSharp) Method

Index() public method

public Index ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            var seminar = SiteService.GetLatestSeminar(Site);

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

            return View(templateList);
        }