Setup system for handeling transactions between acounts.

Made so each Transaction handler in the Account class to return the transaction object.
Updated the Utils class to handle the transactions que reading and writing.
Added org.json to aid in trnsaction que handling.
made so accounts can update there balance and transactions from the transaction que.
Added a tranfer window to handle the transfer of money between acounts.
This commit is contained in:
2025-04-23 13:36:49 +02:00
parent d2881cb52d
commit 86b505b4e3
11 changed files with 462 additions and 44 deletions

View File

@@ -13,6 +13,7 @@ repositories {
dependencies {
implementation 'com.google.code.gson:gson:2.12.1'
implementation("org.jetbrains:annotations:23.1.0")
implementation 'org.json:json:20250107'
}
test {