5 lines
133 B
C#
5 lines
133 B
C#
public interface IPatientRegistryService
|
|
{
|
|
Task<IReadOnlyList<PatientSearchResult>> SearchAsync(string query, int limit = 20);
|
|
}
|