Skip to content

Instantly share code, notes, and snippets.

@marcherdiego
Created April 6, 2017 13:59
Show Gist options
  • Save marcherdiego/4dcf79f1b49117c9079bd5042e9edaa3 to your computer and use it in GitHub Desktop.
Save marcherdiego/4dcf79f1b49117c9079bd5042e9edaa3 to your computer and use it in GitHub Desktop.
public class MainPresenter {
private final MainModel model;
private final MainView view;
public MainPresenter(MainView view, MainModel model) {
this.view = view;
this.model = model;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment