Table of Contents

Class PatientIcca

Namespace
adas_core.Domain.Models
Assembly
adas-core.Domain.dll

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

DateTime

Location

public PatientLocation Location { get; set; }

Property Value

PatientLocation

PatientId

public string? PatientId { get; set; }

Property Value

string

PatientNumber

public string? PatientNumber { get; set; }

Property Value

string

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.