ATS.MVC.UI.Controllers.CodeTableController.Edit C# (CSharp) Method

Edit() public method

public Edit ( int id ) : System.Web.Mvc.ActionResult
id int
return System.Web.Mvc.ActionResult
        public ActionResult Edit(int id = 0)
        {
            CodeTable model = TimesheetRepository.GetCodeTableById(id);
            if (model == null)
            {
                return HttpNotFound();
            }
            return View(model);
        }

Same methods

CodeTableController::Edit ( CodeTable codetable ) : System.Web.Mvc.ActionResult