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