4 lines
306 B
C#
4 lines
306 B
C#
namespace DocuMed.Domain.CommandQueries.Queries;
|
|
|
|
public sealed record GetPatientQuery(Guid? Id = null , string? NationalId = null) : IRequest<PatientSDto>;
|
|
public sealed record GetPatientsQuery(int Page , int Count , string? SearchName = null , string? NationalId = null) : IRequest<List<PatientSDto>>; |