Clean up shit

This commit is contained in:
2020-10-04 12:23:43 +02:00
parent 71bfba0638
commit c83389fcd3
14 changed files with 300 additions and 68 deletions
@@ -42,6 +42,21 @@ public class TLWTeam {
}
}
public TLWTeam(
int season, int league, int teamId,
String teamName, String teamNameShort, String teamSymbol, String groupId,
int matchday
) {
this.season = season;
this.league = league;
this.teamId = teamId;
this.teamName = teamName;
this.teamNameShort = teamNameShort;
this.teamSymbol = teamSymbol;
this.groupId = groupId;
this.matchday = matchday;
}
public int getSeason() {
return this.season;
}