public ChallengeMatchesController()
 {
     this._challengeMatchRepository = new ChallengeMatchRepository();
 }
 public ChallengeMatchesController(IChallengeMatchRepository challengeMatchRepository)
 {
     this._challengeMatchRepository = challengeMatchRepository;
 }