gebietsklasse fertig II

This commit is contained in:
Madeleine Vigier 2022-12-06 15:18:36 +01:00
parent f659bbbf5b
commit f34a62c1b5

View File

@ -15,9 +15,10 @@ public class Gebiet implements GebietInterface {
private long gesamtEinkommen;
private int durchschnittsEinkommen;
public Gebiet(int jahr, int schlüssel, long gesamtEinkommen, int durchschnittsEinkommen) {
public Gebiet(int jahr, int schlüssel, String name, long gesamtEinkommen, int durchschnittsEinkommen,) {
this.jahr = jahr;
this.schlüssel = schlüssel;
this.name = name;
this.gesamtEinkommen = gesamtEinkommen;
this.durchschnittsEinkommen = durchschnittsEinkommen;
}