2016-06-12 09:15:50 -04:00
|
|
|
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 {
|
|
|
|
|
2016-06-18 06:17:46 -04:00
|
|
|
Object FetchVoters(List<String> filters);
|
2016-06-12 09:15:50 -04:00
|
|
|
}
|