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

MyStudents() public method

public MyStudents ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult MyStudents()
        {
            var experiences =
                RepositoryFactory.ExperienceRepository.Queryable.Where(
                    x => x.Instructors.Any(i => i.Identifier == CurrentUser.Identity.Name)).ToList();

            return View(experiences);
        }