Weitere Änderungen Testat

main
robinschumann 2022-10-25 14:45:24 +02:00
parent d087058ee1
commit 5fe337641d
1 changed files with 1 additions and 0 deletions

View File

@ -93,6 +93,7 @@ public class Banksystem {
if (start instanceof Girokonto && ziel instanceof Girokonto) { if (start instanceof Girokonto && ziel instanceof Girokonto) {
boolean funktioniert = ((Girokonto) start).überweise((Girokonto) ziel, betrag, verwendungszweck); boolean funktioniert = ((Girokonto) start).überweise((Girokonto) ziel, betrag, verwendungszweck);
zähleKontobewegung();
Persistenz.speichereBankDaten(this.bank, bank.getName()); Persistenz.speichereBankDaten(this.bank, bank.getName());
return funktioniert; return funktioniert;