Files
adas-core/adas-core.Application/Services/Interfaces/IArchivedPatientService.cs
T

13 lines
464 B
C#

using adas_core.Domain.Models.MongoModels;
namespace adas_core.Application.Services.Interfaces;
public interface IArchivedPatientService
{
/// <summary>
/// Asynchronously retrieves all patients from the data store.
/// </summary>
/// <returns>A task that represents the asynchronous operation. The task result contains a list of all patients.</returns>
/// <!-- aidoc:v1 sig=3685411 -->
public Task<List<Patient>> FindAllPatients();
}