Exemple #1
0
 public async Task <IActionResult> PutNotification(string id, [FromBody] Notification entity)
 {
     return(await _notificationHelper.Update(id, string.Empty, entity));
 }
 public async Task <IActionResult> PutExtendedLog(string id, [FromBody] ExtendedLog entity)
 {
     return(await _extendedLogHelper.Update(id, string.Empty, entity));
 }
Exemple #3
0
 public async Task <IActionResult> PutEventService(string id, string includePropertyPaths = "", [FromBody] EventService entity = null)
 {
     return(await _serviceHelper.Update(id, includePropertyPaths, entity));
 }