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