public DownloadEventArgs(Table table)
 {
     Table = table;
 }
 public void Sonify(Table table)
 {
     _player.Start(table);
 }
 public void Start(Table table)
 {
     _operation.SetMaxPoints(table.Maxpoints);
     _teams = new Queue<Team>(table.Teams);
     NextTeam();
 }