コード例 #1
0
 public async Task <IActionResult> PatchNotification(string id, [FromBody] JsonPatchDocument <Notification> patch)
 {
     return(await _notificationHelper.Patch(id, string.Empty, patch));
 }
コード例 #2
0
 public async Task <IActionResult> PatchExtendedLog(string id, [FromBody] JsonPatchDocument <ExtendedLog> patch)
 {
     return(await _extendedLogHelper.Patch(id, string.Empty, patch));
 }
コード例 #3
0
 public async Task <IActionResult> PatchEventService(string id, string includePropertyPaths = "", [FromBody] JsonPatchDocument <EventService> patch = null)
 {
     return(await _serviceHelper.Patch(id, includePropertyPaths, patch));
 }