Class Order
- Namespace
- Skyware.Lis.EventsModel.Orders
- Assembly
- Skyware.Lis.EventsModel.dll
Represents Order in LIS iLab (Orders database)
public class Order
- Inheritance
-
Order
- Inherited Members
Properties
Diagnoses
Collection of Diagnosis, associated with the order
public IEnumerable<Diagnosis> Diagnoses { get; set; }
Property Value
Examinations
Collection of Examination, associated with the order
public IEnumerable<Examination> Examinations { get; set; }
Property Value
Id
Id of the order in LIS iLab (Orders database)
public int Id { get; set; }
Property Value
IsAddition
If values is set (known), shows if order is addition to previously sent one
public bool? IsAddition { get; set; }
Property Value
- bool?
Origin
Organization which made the order
public Organization Origin { get; set; }
Property Value
Patient
Patient to which order is made
public Patient Patient { get; set; }
Property Value
PriorityCode
Priority code (see PriorityCodes), compatible with HL7 table 0485 (Extended Priority Codes)
public string PriorityCode { get; set; }
Property Value
Samples
Collection of Sample, associated with the order
public IEnumerable<Sample> Samples { get; set; }
Property Value
ScheduledTime
Not null value indicates desired date and time of sample collection and execution
public DateTime? ScheduledTime { get; set; }