Created
November 16, 2016 19:45
-
-
Save dazza5000/3953a8982864c3b0d78b01f8acf71a89 to your computer and use it in GitHub Desktop.
Events View
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 View { | |
void showEvents(List<Event> events); | |
void setPizzaCount(int count); | |
void setTacoCount(int count); | |
void setBeerCount(int count); | |
void setTotalCount(int count); | |
void showFilteringPopUpMenu(); | |
void showNoEventsView(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment