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

Index() private method

private Index ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            var seminar = SiteService.GetLatestSeminar(Site);
            var applications = _applicationRepository.Queryable.Where(a => a.Seminar == seminar).OrderBy(a=>a.IsPending).ThenBy(a=>a.IsApproved);
            return View(applications);
        }