Skip to content

Instantly share code, notes, and snippets.

@varshabhatia007
Created May 17, 2019 08:53
Show Gist options
  • Save varshabhatia007/b7e601984b0e201b512db1d50be54634 to your computer and use it in GitHub Desktop.
Save varshabhatia007/b7e601984b0e201b512db1d50be54634 to your computer and use it in GitHub Desktop.
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