Exemplo n.º 1
0
 // Use the RunAsync set of methods to run ESAPI-related actions on a separate thread
 public Task <PatientMatch[]> SearchAsync(string searchText) =>
 RunAsync(() => _search.FindMatches(searchText)
          .Select(ps => new PatientMatch
 {
     Id        = ps.Id,
     FirstName = ps.FirstName,
     LastName  = ps.LastName
 })
          .ToArray());
Exemplo n.º 2
0
 public PatientMatch[] FindPatientMatches(string searchText) =>
 _search.FindMatches(searchText).Select(CreatePatientMatch).ToArray();