Badges.Controllers.InstructorController.Index C# (CSharp) Méthode

Index() public méthode

public Index ( ) : System.Web.Mvc.ActionResult
Résultat 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();
        }