Beispiel #1
0
 public ContestController(IContestRepo _contests)
 {
     this.contests = _contests;
 }
Beispiel #2
0
 public JudgeParticipantController(IJudgeParticipantRepo _judgeparticipant, IJudgeRepo _judges, IContestRepo _contests)
 {
     this.judgeParticipants = _judgeparticipant;
     this.judges            = _judges;
     this.contests          = _contests;
 }