Documentation modifications
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user