Created
October 15, 2019 00:00
-
-
Save markchristopherng/eff399c655b30f0ea9ace68c72f6aca6 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
@Singleton | |
class CustomerManager @Inject constructor (val customerDao: CustomerDao) { | |
fun getCustomerDetails(): Single<Customer> { | |
return customerDao.getCustomerDetails() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment