예제 #1
0
 public Task <List <IGeoZone> > StateAutoComplete(Guid countryGuid, string query, int maxRows)
 {
     return(repo.StateAutoComplete(countryGuid, query, maxRows, CancellationToken));
 }
 public async Task <List <IGeoZone> > StateAutoComplete(Guid countryGuid, string query, int maxRows)
 {
     return(await repo.StateAutoComplete(countryGuid, query, maxRows));
 }