meerkat-java/voting-station-gui/src/polling_station_dashboard/search/VotersFetcher/VotersFetcher.java

14 lines
358 B
Java

package polling_station_dashboard.search.VotersFetcher;
import java.util.HashMap;
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<HashMap<String,String>> FetchVoters(List<String> filters);
}