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

9 lines
250 B
C#

using adas_core.Domain.Models;
using MongoDB.Bson;
namespace adas_core.Application.Services.Interfaces;
public interface IArchivedPatientTreatmentService
{
Task<List<PatientTreatment>> FindAllPatientTreatmentsByPatient(ObjectId patientId);
}