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
@@ -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;