backup
This commit is contained in:
31
14/12/Girokonto.java
Normal file
31
14/12/Girokonto.java
Normal file
@@ -0,0 +1,31 @@
|
||||
/**
|
||||
*
|
||||
* Beschreibung
|
||||
*
|
||||
* @version 1.0 vom 06.05.2025
|
||||
* @author
|
||||
*/
|
||||
|
||||
public class Girokonto extends Konto {
|
||||
|
||||
// Anfang Attribute
|
||||
private double dispoBetrag;
|
||||
private double dispoZins;
|
||||
// Ende Attribute
|
||||
|
||||
public Girokonto(int kontonr, double kontostand) {
|
||||
super(kontonr, kontostand);
|
||||
}
|
||||
|
||||
// Anfang Methoden
|
||||
|
||||
public double getDispoBetrag() {
|
||||
return dispoBetrag;
|
||||
}
|
||||
|
||||
public double getDispoZins() {
|
||||
return dispoZins;
|
||||
}
|
||||
|
||||
// Ende Methoden
|
||||
} // end of Girokonto
|
||||
Reference in New Issue
Block a user