コード例 #1
0
        public ActionResult Edit(int Id)
        {
            var content = new SectionContentTitleService().Get(Id);

            content.ActionType = ActionType.Update;
            return(View("Form", content));
        }
コード例 #2
0
 public ActionResult Edit(int Id)
 {
     var content = new SectionContentTitleService().Get(Id);
     content.ActionType = ActionType.Update;
     return View("Form", content);
 }