Documentation modifications

This commit is contained in:
julian
2026-06-27 15:23:26 -07:00
parent a633fe6c06
commit a19fb90902
218 changed files with 2882 additions and 0 deletions
@@ -19,6 +19,13 @@ public class HistoricalLocation : IEquatable<HistoricalLocation>
public HistoricalLocation() { }
// Tu constructor actual
/// <summary>
/// Initializes a new instance of <see cref="HistoricalLocation"/> with the specified admission time and <see cref="PatientLocation"/>, representing a historical record of a patient's location.
/// </summary>
/// <param name="admTime">The admission time assigned to <see cref="HistoricalLocation.AdmTime"/>.</param>
/// <param name="patientLocation">The <see cref="PatientLocation"/> assigned to <see cref="HistoricalLocation.PatientLocation"/>; cannot be <see langword="null"/>.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="patientLocation"/> is <see langword="null"/>.</exception>
/// <!-- aidoc:v1 sig=eaeda50 body=ebde455 -->
public HistoricalLocation(DateTime admTime, PatientLocation patientLocation)
{
AdmTime = admTime;