added Depot

main
zlohbierdcul 2022-11-14 15:25:30 +01:00
parent 817d04ab48
commit 2c5f30eb43
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package de.hs_mannheim.informatik.bank.domain;
public class Depot extends Konto{
public Depot(String inhaber, int kontozähler) {
super(inhaber, kontozähler);
}
}