Files
vigilcare-clinical/VigilCareClinicalAPI/Services/Interfaces/IGcsService.cs
T
voltsrage 7751d6df06 fix:
No SOFA trend chart or organ-system timeline
No GCS trend chart or component history
No qSOFA history view
2026-06-23 18:00:43 +08:00

5 lines
185 B
C#

public interface IGcsService
{
Task<GcsScore?> GetCurrentAsync(Guid encounterId);
Task<CursorPage<GcsScore>> GetHistoryAsync(Guid encounterId, int limit, string? cursorToken);
}