public ActionResult Edit(Customer customer) { string strResult = string.Empty; bool bResult = CustomerService.Save(customer,out strResult); string msg = bResult ? "修改成功" : "修改失败"; return Json(JsonMessageHelper.getJsonMessage(bResult, msg, null), "text", JsonRequestBehavior.AllowGet); }
public ActionResult Create(Customer customer) { string strResult = string.Empty; bool bResult = CustomerService.Add(customer, out strResult); string msg = bResult ? "新增成功" : "新增失败"; return Json(JsonMessageHelper.getJsonMessage(bResult, msg, strResult), "text", JsonRequestBehavior.AllowGet); }