コード例 #1
0
 public ActionResult Edit(ProductIsInfractionType obj)
 {
     bool isOk = Update<ProductIsInfractionType>(obj);
     return Json(new { IsSuccess = isOk });
 }
コード例 #2
0
 public JsonResult Create(ProductIsInfractionType obj)
 {
     bool isOk = Save(obj);
     return Json(new { IsSuccess = isOk });
 }