=== Summary: 675 files | 7 generated | 484 fresh | 4605 untracked | 4268 adopted | 355 marked | 466 validated-ok | 2+0 stale (sig+body) | 0 skipped | 0 failed | elapsed 11:08:11.442 (40091.44s) ===
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
/// <summary>
|
||||
/// Represents a patient data model associated with the ICCA (IntelliSpace Critical Care and Anesthesia) system.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=c44a697 -->
|
||||
public class PatientIcca
|
||||
{
|
||||
public PatientLocation Location { get; set; } = new(string.Empty, string.Empty);
|
||||
@@ -17,6 +18,7 @@ public class PatientIcca
|
||||
/// Creates a deep copy of the current <see cref="PatientIcca"/> instance, duplicating the <see cref="Location"/>, <see cref="PatientNumber"/>, and <see cref="PatientId"/> so that modifications to the copy do not affect the original object.
|
||||
/// </summary>
|
||||
/// <returns>A new <see cref="PatientIcca"/> instance with independently copied reference-typed members.</returns>
|
||||
/// <!-- aidoc:v1 sig=faeca64 body=c869a01 -->
|
||||
public PatientIcca DeepCopy()
|
||||
{
|
||||
var other = (PatientIcca)MemberwiseClone();
|
||||
|
||||
Reference in New Issue
Block a user