Created
November 16, 2016 19:52
-
-
Save dazza5000/1d12b2f775b389f2c8c16ec320a2326f to your computer and use it in GitHub Desktop.
Events Presenter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Presenter { | |
void loadEvents(); | |
void loadYummyCounts(); | |
void searchEvents(String searchTerm); | |
void openEventDetails(Event clickedEvent); | |
void setFiltering(EventsFilterType requestType); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment