AdamKruschwitz / FootballApp

An app for organizing soccer tournaments.
1 stars 1 forks source link

Create matches for schedule #47

Closed AdamKruschwitz closed 5 years ago

AdamKruschwitz commented 5 years ago

This is a pull request for the code I wrote

Project-neuron commented 5 years ago
  1. Will need a schedule class to hold all of the rounds.
  2. Data members in the match should be private with public getters and setters
  3. Possibly include a unique match id to be able to access specific matches within a schedule.
  4. I think the next round creation should be in the schedules class and the match class should just have a getter that passes on the winner of this round into the scheduler which then creates a new round with the two winners of the previous round.