Api-PWA/DocuMed.PWA/Services/RestServices/IPatientRestApi.cs

11 lines
339 B
C#

namespace DocuMed.PWA.Services.RestServices;
public interface IPatientRestApi
{
[Get("/")]
Task<List<PatientSDto>> GetPatientsAsync([Header("Authorization")] string authorization,
[Query]int page ,
[Query]int? count = null,
[Query]string? searchName = null,
[Query]string? nationalId = null );
}