using adas_core.Domain.Models;
using MongoDB.Bson;
namespace adas_core.Application.Services.Interfaces;
public interface IArchivedPatientObservationService
{
///
/// Asynchronously retrieves the list of archived patient observations associated with the specified patient.
///
/// The unique identifier of the patient whose archived observations are to be retrieved.
/// A task that represents the asynchronous operation, containing a list of objects representing the archived observations for the patient.
public Task> FindArchivedPatientObservationsFromPatient(ObjectId patientId);
}