public void UpdateMatchReport(Match match)
 {
     _matchRepository.Update(match);
 }
 public Match AddMatchReport(Match match)
 {
     return _matchRepository.Add(match);
 }