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
@@ -1,5 +1,11 @@
namespace adas_core.Domain.Models.Providers;
/// <summary>
/// Represents an abstract base class for result models used to predict medication outcomes based on the ADAS (Alzheimer's Disease Assessment Scale).
/// </summary>
/// <remarks>
/// This class is intended to be inherited by concrete result model types that provide specific prediction logic for medication-related ADAS assessments.
/// </remarks>
public abstract class ResultModelPredictMedicationAdas
{
public string MedicineIdentifier { get; set; } = string.Empty;
@@ -18,8 +24,12 @@ public abstract class ResultModelPredictMedicationAdas
public double DegreeSimilarity { get; set; }
/// <summary>
/// Returns a string representation combining the medicine text and its degree of similarity, separated by a pipe character.
/// </summary>
/// <returns>A formatted string containing the <c>MedicineText</c> and <c>DegreeSimilarity</c> values joined by a pipe (<c>|</c>) separator.</returns>
public override string ToString()
{
return $"{MedicineText} | {DegreeSimilarity}";
}
{
return $"{MedicineText} | {DegreeSimilarity}";
}
}