14 lines
743 B
C#
14 lines
743 B
C#
using adas_core.Domain.Models;
|
|
using MongoDB.Bson;
|
|
|
|
namespace adas_core.Application.Services.Interfaces;
|
|
|
|
public interface IArchivedPatientObservationService
|
|
{
|
|
/// <summary>
|
|
/// Asynchronously retrieves the list of archived patient observations associated with the specified patient.
|
|
/// </summary>
|
|
/// <param name="patientId">The unique identifier of the patient whose archived observations are to be retrieved.</param>
|
|
/// <returns>A task that represents the asynchronous operation, containing a list of <see cref="PatientObservation"/> objects representing the archived observations for the patient.</returns>
|
|
public Task<List<PatientObservation>> FindArchivedPatientObservationsFromPatient(ObjectId patientId);
|
|
} |