Created
January 8, 2019 07:49
-
-
Save muzafakar/72a9a147e27360aaf74002a1bb491186 to your computer and use it in GitHub Desktop.
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
public class Contract { | |
public interface Presenter{ | |
void getEvent(); | |
void getCraft(); | |
void getCulinnary(int id); | |
void getLanguange(int id); | |
void getCategory(); | |
void getCategoryLanguage(); | |
void getTrending(); | |
void onFinishCall(ArrayList list); | |
void onFailurCall(Throwable t); | |
} | |
public interface View{ | |
void onCompleteCall(ArrayList data); | |
} | |
public interface Intractor{ | |
void getEvent(); | |
void getCraft(); | |
void getCulinnary(int id); | |
void getLanguange(int id); | |
void getCategory(); | |
void getCategoryLanguage(); | |
void getTrending(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment