Aidbox / aidbox-dotnet

0 stars 0 forks source link

Typed Search Parameters #7

Closed krvital closed 5 months ago

krvital commented 6 months ago

Provide search parameters structures/classes for each resource that'll have all of the properties according to FHIR's resources search parameters.

One of the possible solutions

var params = new PatientSearchParams {
  Active = true,
  Given = "John Doe",
  GeneralPractitioner = "",
  Count = 10,
  Page = 2,
};
var results = client.Search(params);