public ActionResult DeleteContract(decimal P_ID) { try { ContractBL _ContractBL = new ContractBL(); decimal _rel = _ContractBL.Contract_Delete(P_ID); return(Json(new { success = _rel })); } catch (Exception ex) { NaviCommon.Common.log.Error(ex.ToString()); return(Json(new { success = false })); } }