Merge remote-tracking branch 'origin/master'

This commit is contained in:
Felix Wöstemeyer 2022-12-09 14:18:49 +01:00
commit bb2d6179ed

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);
}