Пример #1
0
 public bool DeleteRolePro(int systemId, string companyId, string roleId)
 {
     try
     {
         int    errCode = -1;
         string errMsg  = "fail";
         var    result  = CTMSContext.SP_Delete_Sys_Role(systemId, companyId, roleId, out errCode, out errMsg);
         if (errCode != 0)
         {
             throw new Exception(errMsg);
         }
         return(result > 0);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }