Created
May 17, 2019 08:53
-
-
Save varshabhatia007/b7e601984b0e201b512db1d50be54634 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 CustomerUsecase { | |
fun getCustomerData(): Single<CustomerDetail> | |
} | |
class CustomerInteractor(private val repo: CustomerRepo) : CustomerUsecase { | |
override fun getCustomerData(): Single<CustomerDetail> = repo.fetchCustomerDetail() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment