Exemplo n.º 1
0
 public RepositorySet(
     IRaceSettingsRepository raceSettings,
     IStartingListRepository startingList,
     IStartingLanesRepository startingLanes,
     IDisciplinesRepository disciplines,
     IResultsListsRepository resultsLists,
     IAthletesRepository athletes,
     IJudgesRepository judges)
 {
     this.raceSettings  = raceSettings;
     this.startingList  = startingList;
     this.startingLanes = startingLanes;
     this.disciplines   = disciplines;
     this.resultsLists  = resultsLists;
     this.athletes      = athletes;
     this.judges        = judges;
 }
 public JudgesController(IJudgesRepository judgesRepository, ITournamentRepository tournamentRepository)
 {
     this.judgesRepository     = judgesRepository;
     this.tournamentRepository = tournamentRepository;
 }