Badges.Controllers.InstructorController.Index C# (CSharp) Method

Index() public method

public Index ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            ViewBag.NotificationCount = RepositoryFactory.FeedbackRequestRepository.Queryable.Count(
                x => x.Instructor.Identifier == CurrentUser.Identity.Name && x.ResponseDate == null);

            return View();
        }