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