Esempio n. 1
0
 public async Task <IEnumerable <KeyValuePair <string, string> > > GetPersonTypeahead(string excludePersonId, string query = "")
 {
     try
     {
         return(await _mgrFcc.PersonTypeaheadWithPossibilities(excludePersonId, query));
     }
     catch (Exception)
     {
         return(new List <KeyValuePair <string, string> >());
     }
 }