Full SOFA Score: Data Layer + Scoring Engine Glasgow Coma Scale: Data Layer + Scoring Engine
7 lines
254 B
C#
7 lines
254 B
C#
public interface ISofaService
|
|
{
|
|
Task<SofaScore?> GetCurrentAsync(Guid encounterId);
|
|
Task<SofaScore?> GetBaselineAsync(Guid encounterId);
|
|
Task<CursorPage<SofaScore>> GetHistoryAsync(
|
|
Guid encounterId, int limit, string? cursorToken);
|
|
} |