Add provider ongoing requests flow and sort persistence

This commit is contained in:
Paul Schneider 2026-09-12 13:29:49 +01:00
commit 2397f4d3a8
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
10 changed files with 784 additions and 2 deletions

View file

@ -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))