Beispiel #1
0
 public async Task <IActionResult> Patch(string id, [FromBody] JsonPatchDocument <Schedule> request)
 {
     try
     {
         _manager.AttemptPatchUpdate(request, id);
         return(await base.PatchEntity(id, request));
     }
     catch (Exception ex)
     {
         return(ex.GetActionResult());
     }
 }