Class PatientIcca
Represents a patient data model associated with the ICCA (IntelliSpace Critical Care and Anesthesia) system.
public class PatientIcca
- Inheritance
-
PatientIcca
- Inherited Members
- Extension Methods
Properties
AdmitTime
public DateTime AdmitTime { get; set; }
Property Value
Location
public PatientLocation Location { get; set; }
Property Value
PatientId
public string? PatientId { get; set; }
Property Value
PatientNumber
public string? PatientNumber { get; set; }
Property Value
Methods
DeepCopy()
Creates a deep copy of the current PatientIcca instance, duplicating the Location, PatientNumber, and PatientId so that modifications to the copy do not affect the original object.
public PatientIcca DeepCopy()
Returns
- PatientIcca
A new PatientIcca instance with independently copied reference-typed members.