Created
July 28, 2018 06:06
-
-
Save lomza/5efe1cd5362df2f189e62e20c9077643 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
interface CalendarContract { | |
interface Presenter : BaseMvpPresenter<CalendarContract.View> { | |
fun populateList(context: Context?, date: Calendar, screenLookCategory: ScreenLookCategory) | |
} | |
interface View : BaseView { | |
fun setViewTitle(titleMonth: Calendar) | |
fun setWeekLabels(weekLabels: List<String>) | |
fun setDatesToCalendar(dates: List<Pair<Calendar, Int?>>) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment