feature: FHIR R4 Inbound Facade
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
public record FhirEncounterUpsertRequest(
|
||||
string IdentifierSystem,
|
||||
string IdentifierValue,
|
||||
Guid PatientId,
|
||||
EncounterType EncounterType,
|
||||
Department Department,
|
||||
string AttendingPhysician,
|
||||
EncounterStatus TargetStatus,
|
||||
DateTimeOffset? AdmittedAt = null,
|
||||
string? RoomBed = null,
|
||||
string? AdmissionReason = null,
|
||||
string? DischargeDiagnosis = null);
|
||||
@@ -0,0 +1,11 @@
|
||||
public record FhirPatientUpsertRequest(
|
||||
string IdentifierSystem,
|
||||
string IdentifierValue,
|
||||
string FirstName,
|
||||
string LastName,
|
||||
DateOnly DateOfBirth,
|
||||
string Gender,
|
||||
BloodType? BloodType = null,
|
||||
string? Allergies = null,
|
||||
string? EmergencyContactName = null,
|
||||
string? EmergencyContactPhone = null);
|
||||
Reference in New Issue
Block a user