Table of Contents

Class Patient

Namespace
Skyware.Lis.EventsModel.Common
Assembly
Skyware.Lis.EventsModel.dll

Represent a patient (human, animal, etc., inherits Person)

public class Patient : Person
Inheritance
Patient
Inherited Members

Properties

DateOfBirth

Date of birth

public DateTime? DateOfBirth { get; set; }

Property Value

DateTime?

Id

Identifier in the LIS iLab

public int Id { get; set; }

Property Value

int

Identifier

Identifier of the, such as SSN, EGN, etc.

public string Identifier { get; set; }

Property Value

string

IdentifierTypeId

Type Id in LIS iLab

public int IdentifierTypeId { get; set; }

Property Value

int

IdentifierTypeName

Type of well-known identifier of the patient

public string IdentifierTypeName { get; set; }

Property Value

string

IsDobApproximate

False if date of birth is known, otherwise true (for calculation of age)

public bool IsDobApproximate { get; set; }

Property Value

bool

IsMale

Three-state gender indicator: true if man, false if woman and null for unknown/non binary

public bool? IsMale { get; set; }

Property Value

bool?