using System.Collections.Generic; using TINK.Model; namespace TINK.ViewModel.Map { /// Interface for filtering. /// Holds a dictionary of filters which might or might not be appield depending on filter state. public interface IGroupFilterMapPage : IDictionary { /// Performs filtering on response-group. IEnumerable DoFilter(IEnumerable filter = null); IList GetGroup(); } }