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