public ActionResult Edit(RoleType obj)
 {
     bool isOk = Update<RoleType>(obj);
     return Json(new { IsSuccess = isOk });
 }
 public JsonResult Create(RoleType obj)
 {
     bool isOk = Save(obj);
     return Json(new { IsSuccess = isOk });
 }