Exemplo n.º 1
0
        public async Task <DbDataAdapter> GetDataAdapterAsync(List <Tuple <string, string> > searchTerms)
        {
            try
            {
                return(await m_dataContext.FillDbDataAdapterAsync(searchTerms));
            }
            catch (Exception e)
            {
                m_logger.LogError(e, $"Could not Search for Users with the searchTerms {JsonConvert.SerializeObject(searchTerms, Formatting.Indented)}");
            }

            return(null);
        }