9 lines
250 B
C#
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);
|
|
} |