public UploadBotController(ITeamManagementCommands teamCommands, IFormsAuthentication formsAuthentication, IConfigurationRepository configurationRepository, MatchStarter matchStarter)
 {
     _teamCommands = teamCommands;
       _formsAuthentication = formsAuthentication;
       _configurationRepository = configurationRepository;
       _matchStarter = matchStarter;
 }
 public CompetitionController(MatchStarter matchStarter)
 {
     _matchStarter = matchStarter;
 }
 public CompetitionController(IRefereeThread refereeThread, MatchStarter matchStarter)
 {
     _refereeThread = refereeThread;
     _matchStarter = matchStarter;
 }