ListenInterface ergänzt

This commit is contained in:
Kevin Maier 2022-12-09 14:15:28 +01:00
parent f7c24fb672
commit db89a36339

View File

@ -1,3 +1,10 @@
import java.util.List;
public interface ListenInterface
{
}
Gebiet getGebietMinDurchschnittsEinkommen();
Gebiet getGebietMaxAnzahlEinwohner();
int getAnzahlGesamt();
int getAnzahlUnvollständig();
List<Gebiet> getGebieteNachNamen(String namensanfang);
}