コード例 #1
0
 public async Task <IActionResult> CancelFileImport([FromRoute] ReleaseFileImportInfo file)
 {
     return(await _importService
            .CancelImport(file)
            .HandleFailuresOr(result => new AcceptedResult()));
 }