13 lines
311 B
Java
13 lines
311 B
Java
|
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 {
|
||
|
|
||
|
Object FectchVoters(List<String> filters);
|
||
|
}
|