public async Task <List <User> > SearchAsync(List <Tuple <string, string> > searchTerms) { try { return(await m_dataContext.SearchAsync(searchTerms)); } catch (Exception e) { m_logger.LogError(e, $"Could not Search for Users with the searchTerms {JsonConvert.SerializeObject(searchTerms, Formatting.Indented)}"); } return(null); }