=== 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:
@@ -6,6 +6,7 @@
|
||||
/// <remarks>
|
||||
/// This class specializes the Observation concept for textual or string-based content, inheriting the core observation behavior from its parent class.
|
||||
/// </remarks>
|
||||
/// <!-- aidoc:v1 sig=9cacd8d -->
|
||||
public class StringObservation : Observation
|
||||
{
|
||||
public string Value { get; set; } = string.Empty;
|
||||
@@ -16,6 +17,7 @@ public class StringObservation : Observation
|
||||
/// </summary>
|
||||
/// <param name="obs">The list of <see cref="PatientObservation"/> instances to convert.</param>
|
||||
/// <returns>A <see cref="StringObservation"/> populated with the string value of the first observation, or <c>null</c> if the list contains no elements.</returns>
|
||||
/// <!-- aidoc:v1 sig=ae5156f body=38bc202 -->
|
||||
public static StringObservation? From(List<PatientObservation> obs)
|
||||
{
|
||||
if (obs.Count > 0)
|
||||
|
||||
Reference in New Issue
Block a user