Compare commits

...

2 Commits

Author SHA1 Message Date
ed4c058713 Merge remote-tracking branch 'origin/master' 2022-12-09 15:03:24 +01:00
caf5b72d90 Interfaces 2022-12-09 15:03:17 +01:00
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,5 @@
import java.util.List;
public interface GebietsDateiInterface {
List<Gebiet> getGebiete();
}

View File

@ -0,0 +1,9 @@
import java.util.List;
public interface GebietsListeInterface {
Gebiet getGebietMinDurchschnittsEinkommen();
Gebiet getGebietMaxAnzahlEinwohner();
int getAnzahlGesamt();
int getAnzahlUnvollständig();
List<Gebiet> getGebieteNachNamen();
}