ATS.MVC.UI.Controllers.CodeTableController.Delete C# (CSharp) 메소드

Delete() 공개 메소드

public Delete ( int id ) : System.Web.Mvc.ActionResult
id int
리턴 System.Web.Mvc.ActionResult
        public ActionResult Delete(int id = 0)
        {
            //CodeTable codetable = db.CodeTables.Find(id);
            //if (codetable == null)
            //{
            //    return HttpNotFound();
            //}
            //return View(codetable);
            return View();
        }