CantEatRepository

Interface for the CantEatRepository. It contains the methods for managing CantEat data.

Inheritors

Functions

Link copied to clipboard
abstract suspend fun deleteCantEat(cantEat: CantEat)
Link copied to clipboard
abstract fun getCantEats(): Flow<List<CantEat>>
Link copied to clipboard
abstract suspend fun insertCantEat(cantEat: CantEat)
Link copied to clipboard
abstract suspend fun refresh()
Link copied to clipboard
abstract suspend fun saveCantEat(cantEat: CantEat): CantEat
Link copied to clipboard
abstract suspend fun updateCantEat(cantEat: CantEat)