feat(notification-outbox): CommunicationService per-site KPI accessor

This commit is contained in:
Joseph Doherty
2026-05-19 05:41:35 -04:00
parent 1629a72093
commit c95758c6ce
2 changed files with 34 additions and 0 deletions

View File

@@ -281,6 +281,13 @@ public class CommunicationService
return await GetNotificationOutbox().Ask<NotificationKpiResponse>(
request, _options.QueryTimeout, cancellationToken);
}
public async Task<PerSiteNotificationKpiResponse> GetPerSiteNotificationKpisAsync(
PerSiteNotificationKpiRequest request, CancellationToken cancellationToken = default)
{
return await GetNotificationOutbox().Ask<PerSiteNotificationKpiResponse>(
request, _options.QueryTimeout, cancellationToken);
}
}
/// <summary>