public bool AddTournamentPrediction(UserMatchPredictionModel model)
 {
     return(_tournament.AddTournamentPrediction(model));
 }
 public bool AddPrediction(UserMatchPredictionModel model)
 {
     return(_match.AddPrediction(model));
 }
 public bool EditPrediction(UserMatchPredictionModel model)
 {
     return(_match.EditPrediction(model));
 }
 public bool UpdateAnswers(UserMatchPredictionModel model)
 {
     return(_match.UpdateAnswers(model));
 }