public int MatchingTaxonCount(List <int> taxonIds) { if (_filterChanged) { _matchingTaxonCount = TaxonFilterItem.GetMatchingTaxon(SelectedItems.ToList(), ((App)App.Current).TaxonFilterItems, ValueFilterDictionary, taxonIds).Count; _filterChanged = false; } return(_matchingTaxonCount); }
public List <TaxonSearchResult> MatchingTaxonByExclusion(List <int> taxonIds) { return(TaxonFilterItem.GetMatchingTaxon(SelectedItems.ToList(), ((App)App.Current).TaxonFilterItems, ValueFilterDictionary, taxonIds)); }