Ejemplo n.º 1
0
 public async Task <CommentData> Patch(int id, [FromBody] string value)
 {
     return(await _clientFactoryService.PatchAsync(id, value));
 }
Ejemplo n.º 2
0
 public async Task <User> Patch(int id, [FromBody] string value)
 {
     return(await _clientService.PatchAsync(id, value));
 }