Skip to content

Instantly share code, notes, and snippets.

@drawers
Created August 7, 2017 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drawers/0cb0fc8a9bd800b982dcc9f42527b7bc to your computer and use it in GitHub Desktop.
Save drawers/0cb0fc8a9bd800b982dcc9f42527b7bc to your computer and use it in GitHub Desktop.
class MainPresenter implements MainContract.Presenter {
private final MainRequestHelper mainRequestHelper;
private final MainContract.View view;
@Inject
MainPresenter(MainRequestHelper mainRequestHelper, MainContract.View view) {
this.mainRequestHelper = mainRequestHelper;
this.view = view;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment