14 lines
No EOL
313 B
Kotlin
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>
|
|
|
|
} |