=== Summary: 675 files | 7 generated | 484 fresh | 4605 untracked | 4268 adopted | 355 marked | 466 validated-ok | 2+0 stale (sig+body) | 0 skipped | 0 failed | elapsed 11:08:11.442 (40091.44s) ===
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
/// <summary>
|
||||
/// Represents an observation that conveys a boolean value, extending the base <see cref="Observation"/> type.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=16d4255 -->
|
||||
public class BoolObservation : Observation
|
||||
{
|
||||
public bool Value { get; set; }
|
||||
@@ -13,6 +14,7 @@ public class BoolObservation : Observation
|
||||
/// </summary>
|
||||
/// <param name="obs">The list of patient observations from which the first entry is converted.</param>
|
||||
/// <returns>A <see cref="BoolObservation"/> containing the boolean value of the first observation, or <see langword="null"/> if the list contains no observations.</returns>
|
||||
/// <!-- aidoc:v1 sig=42167d6 body=3489a3a -->
|
||||
internal static BoolObservation? From(List<PatientObservation> obs)
|
||||
{
|
||||
if (obs.Count > 0)
|
||||
|
||||
Reference in New Issue
Block a user