No SOFA trend chart or organ-system timeline No GCS trend chart or component history No qSOFA history view
5 lines
185 B
C#
5 lines
185 B
C#
public interface IGcsService
|
|
{
|
|
Task<GcsScore?> GetCurrentAsync(Guid encounterId);
|
|
Task<CursorPage<GcsScore>> GetHistoryAsync(Guid encounterId, int limit, string? cursorToken);
|
|
} |