app / de.uniks.codliners.stock_simulator.database / TransactionDao / getTransactionsById

getTransactionsById

abstract fun getTransactionsById(id: String): LiveData<List<Transaction>>

Returns all Transactions matching the id as a List, wrapped in LiveData.

Parameters

id - The id of the Transaction is used in this query.

Return
LiveData containing a List of all Transactions matching the id.