using adas_core.Domain.Models.MongoModels; namespace adas_core.Application.Services.Interfaces; public interface IArchivedPatientService { /// /// Asynchronously retrieves all patients from the data store. /// /// A task that represents the asynchronous operation. The task result contains a list of all patients. public Task> FindAllPatients(); }