Skip to content

Instantly share code, notes, and snippets.

@Raiden18
Last active May 10, 2022 14:29
Show Gist options
  • Save Raiden18/9755e1210473a7ebf1b7653b1ce4f024 to your computer and use it in GitHub Desktop.
Save Raiden18/9755e1210473a7ebf1b7653b1ce4f024 to your computer and use it in GitHub Desktop.
Information Expert. Interactor
class CartInteractor(
private val cartRepository: CartRepository
) {
fun getCart() : Cart {
return cartRepository.getCart()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment