NuSurvey.Web.Controllers.ProgramDirectorController.SelectPhotos C# (CSharp) Method

SelectPhotos() private method

private SelectPhotos ( int id ) : System.Web.Mvc.ActionResult
id int
return System.Web.Mvc.ActionResult
        public ActionResult SelectPhotos(int id)
        {
            var userId = CurrentUser.Identity.Name;
            var printedSurvey = _printedSurveyRepository.Queryable.Single(a => a.Id == id && a.UserId == userId);

            return View(printedSurvey);
        }

Same methods

ProgramDirectorController::SelectPhotos ( int id, PrintedSurvey printedSurvey ) : System.Web.Mvc.ActionResult