Documentation modifications
This commit is contained in:
@@ -15,10 +15,21 @@ public class PatientObservation : BasePatientObservationValue
|
||||
{
|
||||
private string? _result;
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new default instance of the <see cref="PatientObservation"/> class, which represents a clinical observation recorded for a patient.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=5c55204 body=4448e1d -->
|
||||
public PatientObservation()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="PatientObservation"/> class, which represents an observation linked to a patient, with the specified identifier, value, and name.
|
||||
/// </summary>
|
||||
/// <param name="patientId">The <see cref="ObjectId"/> identifying the patient associated with the observation.</param>
|
||||
/// <param name="value">The value recorded for the observation.</param>
|
||||
/// <param name="name">The name of the observation, or <see langword="null"/>.</param>
|
||||
/// <!-- aidoc:v1 sig=6b8c74d body=a32087f -->
|
||||
public PatientObservation(ObjectId patientId, object value, string? name)
|
||||
{
|
||||
PatientId = patientId;
|
||||
|
||||
Reference in New Issue
Block a user