AssocManyToMany.Controllers.MatchesController.ByJobDutyWithEmployees C# (CSharp) Method

ByJobDutyWithEmployees() public method

public ByJobDutyWithEmployees ( int id ) : System.Web.Mvc.ActionResult
id int
return System.Web.Mvc.ActionResult
        public ActionResult ByJobDutyWithEmployees(int? id)
        {
            // Attempt to get the matching object
            var o = m.JobDutyGetByIdWithDetail(id.GetValueOrDefault());

            if (o == null)
            {
                return HttpNotFound();
            }
            else
            {
                // Pass the object to the view
                return View(o);
            }
        }