Browse Source

[WebApiUtils] Fixed BMRHandler action method

develop
Robin Thoni 9 years ago
parent
commit
db39d8af1f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      WebApiUtils/BusinessManager/BMRHandler.cs

+ 1
- 1
WebApiUtils/BusinessManager/BMRHandler.cs View File

55
         /// Handle business manager results
55
         /// Handle business manager results
56
         /// </summary>
56
         /// </summary>
57
         /// <param name="result">The result to handle</param>
57
         /// <param name="result">The result to handle</param>
58
-        /// <param name="request">The request to handle</param>
59
         /// <returns>The data to return to the user</returns>
58
         /// <returns>The data to return to the user</returns>
59
+        [NonAction]
60
         public T Handle<T>(OpResult<T> result)
60
         public T Handle<T>(OpResult<T> result)
61
         {
61
         {
62
             if (result.Status == ResultStatus.Success)
62
             if (result.Status == ResultStatus.Success)

Loading…
Cancel
Save