public IEnumerable <Model.IGenericTournamentCoupon> GetTournaments(Model.OddsDownloadStage stage = Model.OddsDownloadStage.Tournament)
        {
            var tournaments = new List <Model.IGenericTournamentCoupon>();

            tournaments.Add(new Model.GenericTournamentCoupon()
            {
                TournamentName = "Premier League",
                Matches        = GetMatches()
            });
            return(tournaments);
        }
 public IEnumerable <Model.IGenericTournamentCoupon> GetTournaments(Model.OddsDownloadStage stage = Model.OddsDownloadStage.Tournament)
 {
     throw new NotImplementedException();
 }