Skip to content

Instantly share code, notes, and snippets.

@drawers
Created August 7, 2017 03:36
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
class MainPresenter implements MainContract.Presenter {
private final PlayerRepository playerRepository;
private final GamesRepository gamesRepository;
private final MainContract.View view;
@Inject
MainPresenter(PlayerRepository playerRepository, GamesRepository gamesRepository, MainContract.View view) {
this.playerRepository = playerRepository;
this.gamesRepository = gamesRepository;
this.view = view;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment