Class EHIPatientDemographic
This class represents the exported patient demographic information
public record EHIPatientDemographic
- Inheritance
-
EHIPatientDemographic
Properties
BirthDate
The patient's birth date
public DateTime? BirthDate { get; set; }
Property Value
DeathDate
The patient's Death Date (if deceased)
public DateTime? DeathDate { get; set; }
Property Value
DoctorId
The identifier for the patient's default doctor
public int? DoctorId { get; set; }
Property Value
- int?
FirstName
The patient's first name
public string FirstName { get; set; }
Property Value
LastName
The patient's last name
public string LastName { get; set; }
Property Value
LocationAbbreviation
The patient's location abbreviated
public string LocationAbbreviation { get; set; }
Property Value
LocationId
The unique identifier of the patient's location
public decimal? LocationId { get; set; }
Property Value
LocationName
The patient's location (full name)
public string LocationName { get; set; }
Property Value
MiddleName
The patient's middle name
public string MiddleName { get; set; }
Property Value
PatientId
Unique identifier for patient
public decimal PatientId { get; set; }
Property Value
SSN
The patient's Social Security Number
public string SSN { get; set; }
Property Value
Sex
The patient's sex
public string Sex { get; set; }
Property Value
Status
The patient's status
public string Status { get; set; }