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