feature:
Full SOFA Score: Data Layer + Scoring Engine Glasgow Coma Scale: Data Layer + Scoring Engine
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
public record SofaScoringResult(
|
||||
SofaOutcome Outcome,
|
||||
SofaResult? Score = null,
|
||||
bool IsBaseline = false,
|
||||
int? DeltaFromBaseline = null,
|
||||
bool AlertCreated = false)
|
||||
{
|
||||
public static readonly SofaScoringResult NotSofaTrigger = new(SofaOutcome.NotSofaTrigger);
|
||||
public static readonly SofaScoringResult EncounterNotFound = new(SofaOutcome.EncounterNotFound);
|
||||
}
|
||||
Reference in New Issue
Block a user