Compare commits

3 Commits

Author SHA1 Message Date
Johannes Kantz
998d8aefd7 add: Readme mit Teilnehmerliste 2022-12-09 14:18:06 +01:00
Johannes Kantz
f85e17a726 add: GebietsDateiInterface 2022-12-09 14:10:55 +01:00
3f42a3aca5 Merge pull request '42' (#13) from fix/all into master
Reviewed-on: #13
2022-12-09 14:00:38 +01:00
3 changed files with 19 additions and 1 deletions

13
README.md Normal file
View File

@@ -0,0 +1,13 @@
# G91_Einkommen
Entwickeln Sie ein Java Programm zur Anzeige des gebietsabhängigen Durchschnittseinkommens von Bundesbürgern auf der Konsole.
## Beteiligte
- Jan-Philipp Schulte
- Malte Schulze Hobeling
- Reshad Meher
- Richard Reiswich
- Johannes Kantz
[GitTea Repo](https://git.bib.de/Homeoffice/passivesEinkommen)

View File

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

View File

@@ -2,7 +2,7 @@ import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
public class GebietsDatei {
public class GebietsDatei implements GebiesDateiInterface {
private String dateiName;