Skip to content

Instantly share code, notes, and snippets.

@markchristopherng
Created October 15, 2019 00:00
Show Gist options
  • Save markchristopherng/eff399c655b30f0ea9ace68c72f6aca6 to your computer and use it in GitHub Desktop.
Save markchristopherng/eff399c655b30f0ea9ace68c72f6aca6 to your computer and use it in GitHub Desktop.
@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