Skip to content

Instantly share code, notes, and snippets.

@markchristopherng
Created September 18, 2018 07:00
Show Gist options
  • Save markchristopherng/9279f85714f37a6d65799a6a15666205 to your computer and use it in GitHub Desktop.
Save markchristopherng/9279f85714f37a6d65799a6a15666205 to your computer and use it in GitHub Desktop.
class PayBillViewModel : BaseViewModel() {
var manager: PayBillManager = PayBillManager()
var bills: StateLiveData<List<SavedBill>> = StateLiveData()
fun loadBills() {
manager.getAll()
.subscribe(bills)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment