コード例 #1
0
 public void DeleteEntity(int keyValue)
 {
     try
     {
         dM_UserService.DeleteEntity(keyValue);
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         throw ExceptionEx.ThrowBusinessException(ex);
     }
 }