コード例 #1
0
        public ActionResult Edit(PrintTemplateType obj)
        {

            base.Update<PrintTemplateType>(obj);
            return Json(new { IsSuccess = true });

        }
コード例 #2
0
 public JsonResult Create(PrintTemplateType obj)
 {
     base.Save<PrintTemplateType>(obj);
     return Json(new { IsSuccess = true });
 }