fints4k/BankingUiCommon/src/main/java/net/dankito/banking/persistence/IBankingPersistence.kt

14 lines
No EOL
313 B
Kotlin

package net.dankito.banking.persistence
import net.dankito.banking.ui.model.Account
interface IBankingPersistence {
fun saveOrUpdateAccount(account: Account, allAccounts: List<Account>)
fun deleteAccount(account: Account, allAccounts: List<Account>)
fun readPersistedAccounts(): List<Account>
}