using System; using System.Collections.Generic; using System.Text; namespace IndianHealthService.BMXNet.Model { /// /// The Patient object is a read-only object used for patient context. /// public interface Patient { /// /// The RPMS intenal entry number for the patient /// String Ien { get; } /// /// The RPMS HRN or chart number /// String HealthRecordNumber { get; } /// /// The default displayable version of the patient's name /// String PatientName { get; } /// /// The current admission date of the user. This is a nullable bool for the cases that /// the patient is not currently admitted. /// DateTime? AdmitDate { get; } /// /// The current age of the patient. /// float Age { get; } /// /// If knownn, the DOB of the patient /// DateTime? Dob { get; } /// /// The displayable name (external value) of the patient's primary provider. /// String PrimaryProvider { get; } /// /// The sex of the patient /// String Sex { get; } /// /// The patient's SSN or an abbrievation of the SSN /// String Ssn { get; } } }