Add request start without waiting for result

This commit is contained in:
2025-10-27 10:44:42 +09:00
parent 9e9845d446
commit 445bfe8273
3 changed files with 77 additions and 2 deletions

View File

@ -36,9 +36,10 @@ namespace Hcs.Broker.Api
}
/// <inheritdoc cref="INsiCommonApi"/>
public Task<string> RequestExportNsiItemAsync(int registryNumber, ListGroup listGroup, CancellationToken token = default)
public async Task<string> RequestExportNsiItemAsync(int registryNumber, ListGroup listGroup, CancellationToken token = default)
{
throw new NotImplementedException();
var request = new ExportNsiItemRequest(client);
return await request.SendAsync(registryNumber, listGroup, token);
}
}
}