public Task <ActionResult <Upload> > Patch(int id, [FromBody] UpdateUploadRequest request)
 {
     return(this._uploadsService.Patch(id, request).Convert(this));
 }
Пример #2
0
 public Task <IWrappedResponse <Upload> > Patch(int id, UpdateUploadRequest request)
 {
     throw new NotImplementedException();
 }