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