Advertisement
Guest User

Untitled

a guest
Sep 28th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.24 KB | None | 0 0
  1. @Module
  2. abstract class EventActivityModule {
  3.     @Binds
  4.     abstract fun view(mainActivity: EventActivity): MainContract.View
  5.  
  6.     @Provides
  7.     fun provideAuthPresenter(view: MainContract.View): MainContract.Presenter = PresenterImpl(view)
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement