Created
July 30, 2018 16:24
-
-
Save JorgeCastilloPrz/6acf62197ced14ea1b7148da91365922 to your computer and use it in GitHub Desktop.
RxModule
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
| class Module { | |
| private val localDataSource: LocalDataSource = LocalDataSource() | |
| private val remoteDataSource: RemoteDataSource = RemoteDataSource() | |
| val repository: TaskRepository = TaskRepository(localDataSource, remoteDataSource) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment