feature:
Full SOFA Score: Data Layer + Scoring Engine Glasgow Coma Scale: Data Layer + Scoring Engine
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
public interface IGcsService
|
||||
{
|
||||
Task<GcsScore?> GetCurrentAsync(Guid encounterId);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
public interface ISofaService
|
||||
{
|
||||
Task<SofaScore?> GetCurrentAsync(Guid encounterId);
|
||||
Task<SofaScore?> GetBaselineAsync(Guid encounterId);
|
||||
Task<CursorPage<SofaScore>> GetHistoryAsync(
|
||||
Guid encounterId, int limit, string? cursorToken);
|
||||
}
|
||||
Reference in New Issue
Block a user