No SOFA trend chart or organ-system timeline No GCS trend chart or component history No qSOFA history view
7 lines
262 B
C#
7 lines
262 B
C#
public interface IQsofaService
|
|
{
|
|
Task<QsofaCurrentResponse> GetCurrentAsync(Guid encounterId);
|
|
Task<int> GetActiveCriteriaCountAsync(Guid encounterId);
|
|
Task<CursorPage<QsofaEvaluation>> GetHistoryAsync(Guid encounterId, int limit, string? cursor);
|
|
}
|