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

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

public Index ( ) : System.Web.Mvc.ActionResult
Результат System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            var sponsorList = _sponsorRepository.Queryable.Where(a => a.Site.Id == Site && a.IsActive);

            return View(sponsorList);
        }