rama creada apartir de master en j

This commit is contained in:
jrojas
2026-06-26 10:29:23 +02:00
parent 319fd3dfb0
commit c1517fda87
2810 changed files with 1927392 additions and 25392 deletions
@@ -12,5 +12,10 @@ public abstract class BaseProvider(
protected IHttpClientFactory HttpClientFactory = httpClientFactory;
protected string Url { get; set; } = providerSettings.Value.Url;
/// <summary>
/// Asynchronously retrieves the list of clinical observations associated with the specified patient.
/// </summary>
/// <param name="patient">The patient whose observations are being requested.</param>
/// <returns>A task that represents the asynchronous operation, containing a list of <see cref="PatientObservation"/> entries for the patient.</returns>
public abstract Task<List<PatientObservation>> GetObservations(Patient patient);
}