8 lines
384 B
C#
8 lines
384 B
C#
public interface ISepsisBundleService
|
|
{
|
|
Task<SepsisBundle?> TryCreateBundleAsync(
|
|
Guid encounterId, Guid triggeringAlertId, AlertType alertType, CancellationToken ct = default);
|
|
Task<SepsisBundle?> GetCurrentByEncounterAsync(Guid encounterId);
|
|
Task<SepsisBundle> GetByIdAsync(Guid id);
|
|
Task OnOrderResultedAsync(Guid orderId, CancellationToken ct = default);
|
|
} |