feature: Schema, Migrations, Core CRUD, and Redis Threshold Cache
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
public record AlertThresholdRequest(
|
||||
string ObservationCode,
|
||||
string DisplayName,
|
||||
string Unit,
|
||||
decimal? CriticalLow,
|
||||
decimal? WarningLow,
|
||||
decimal? WarningHigh,
|
||||
decimal? CriticalHigh);
|
||||
@@ -0,0 +1 @@
|
||||
public record EncounterStatusTransitionResult(Guid EncounterId, EncounterStatus NewStatus);
|
||||
@@ -0,0 +1,4 @@
|
||||
public record OpenEncounterRequest(
|
||||
EncounterType EncounterType,
|
||||
string Department,
|
||||
string AttendingPhysician);
|
||||
@@ -0,0 +1 @@
|
||||
public record TransitionStatusRequest(EncounterStatus Status);
|
||||
@@ -0,0 +1,5 @@
|
||||
public record RegisterPatientRequest(
|
||||
string FirstName,
|
||||
string LastName,
|
||||
DateOnly DateOfBirth,
|
||||
string Gender);
|
||||
Reference in New Issue
Block a user