Documentation modifications
This commit is contained in:
@@ -6,6 +6,13 @@
|
||||
/// </summary>
|
||||
public class PatientLocation : IEquatable<PatientLocation>
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="PatientLocation"/> class, which represents a patient's location within a care unit, using the specified unit name, bed, and room values.
|
||||
/// </summary>
|
||||
/// <param name="unitName">The name of the care unit assigned to <see cref="PatientLocation.UnitName"/>, or <see langword="null"/>.</param>
|
||||
/// <param name="bed">The bed identifier assigned to <see cref="PatientLocation.Bed"/>, or <see langword="null"/>.</param>
|
||||
/// <param name="room">The room identifier assigned to <see cref="PatientLocation.Room"/>, or <see langword="null"/>.</param>
|
||||
/// <!-- aidoc:v1 sig=401fc97 body=2b1784e -->
|
||||
public PatientLocation(string? unitName, string? bed, string? room)
|
||||
{
|
||||
UnitName = unitName;
|
||||
@@ -13,6 +20,12 @@ public class PatientLocation : IEquatable<PatientLocation>
|
||||
Room = room;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="PatientLocation"/> class, storing the supplied unit name and bed, and using the bed value as the room identifier.
|
||||
/// </summary>
|
||||
/// <param name="unitName">The unit name to assign to <see cref="PatientLocation.UnitName"/>, or <see langword="null"/> if unspecified.</param>
|
||||
/// <param name="bed">The bed identifier to assign to <see cref="PatientLocation.Bed"/> and <see cref="PatientLocation.Room"/>, or <see langword="null"/> if unspecified.</param>
|
||||
/// <!-- aidoc:v1 sig=44a90e4 body=fbafeea -->
|
||||
public PatientLocation(string? unitName, string? bed)
|
||||
{
|
||||
UnitName = unitName;
|
||||
@@ -20,6 +33,11 @@ public class PatientLocation : IEquatable<PatientLocation>
|
||||
Room = bed;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="PatientLocation"/> class without performing explicit initialization of its members.
|
||||
/// The <see cref="PatientLocation"/> type represents the location of a patient.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=0911aca body=4448e1d -->
|
||||
public PatientLocation()
|
||||
{
|
||||
// Constructor vacío
|
||||
|
||||
Reference in New Issue
Block a user