コード例 #1
0
        public int MatchingTaxonCount(List <int> taxonIds)
        {
            if (_filterChanged)
            {
                _matchingTaxonCount = TaxonFilterItem.GetMatchingTaxon(SelectedItems.ToList(), ((App)App.Current).TaxonFilterItems, ValueFilterDictionary, taxonIds).Count;
                _filterChanged      = false;
            }

            return(_matchingTaxonCount);
        }
コード例 #2
0
 public List <TaxonSearchResult> MatchingTaxonByExclusion(List <int> taxonIds)
 {
     return(TaxonFilterItem.GetMatchingTaxon(SelectedItems.ToList(), ((App)App.Current).TaxonFilterItems, ValueFilterDictionary, taxonIds));
 }