Add provider ongoing requests flow and sort persistence
This commit is contained in:
parent
86091990c5
commit
2397f4d3a8
10 changed files with 784 additions and 2 deletions
|
|
@ -77,6 +77,14 @@ public sealed class BillingApiClient
|
|||
return items;
|
||||
}
|
||||
|
||||
public Task<List<BillingQuerySummaryDto>> GetProviderOngoingQueriesAsync(CancellationToken ct = default)
|
||||
{
|
||||
return _api.CallAsync<List<BillingQuerySummaryDto>>(
|
||||
HttpMethod.Get,
|
||||
Absolute("bill/provider/ongoing"),
|
||||
ct: ct);
|
||||
}
|
||||
|
||||
public async Task<BillingQueryDetailsDto> GetQueryAsync(string billingCode, long queryId, CancellationToken ct = default)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(billingCode))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue