public bool SaveFunctionPro(string functionId, string functionName, string parentId, int rankId, bool state) { try { int errCode = -1; string errMsg = "fail"; var result = CTMSContext.SP_Add_Sys_Function(functionId, functionName, parentId, rankId, state, out errCode, out errMsg); if (errCode != 0) { throw new Exception(errMsg); } return(result > 0); } catch (Exception ex) { throw new Exception(ex.Message); } }