getAll

inline suspend fun <T, ID, REPO : ReadCRUDRepo<T, ID>> REPO.getAll(crossinline methodCaller: suspend REPO.(Pagination) -> PaginationResult<T>): List<T>
inline suspend fun <Key, Value, REPO : ReadKeyValueRepo<Key, Value>> REPO.getAll(crossinline methodCaller: suspend REPO.(Pagination) -> PaginationResult<Key>): List<Pair<Key, Value>>
inline suspend fun <Key, Value, REPO : ReadKeyValuesRepo<Key, Value>> REPO.getAll(crossinline methodCaller: suspend REPO.(Pagination) -> PaginationResult<Key>): List<Pair<Key, List<Value>>>