Badges.Controllers.InstructorController.Index C# (CSharp) 메소드

Index() 공개 메소드

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