package polling_station_dashboard.search.VotersFetcher; import java.util.List; /** * Created by Vladimir Eliezer Tokarev on 12/06/2016. * VotersFetcher gives the ability of fetching voters based on given list of filters */ public interface VotersFetcher { List FetchVoters(List filters); }