public static List<MatchupsToNotifyGetResult> GetMatchupsToNotify(Guid tournamentId)
 {
     using (TournamentsDataContext tdc = new TournamentsDataContext())
     {
         List<MatchupsToNotifyGetResult> x = tdc.MatchupsToNotifyGet(tournamentId, false, null).ToList();
         return x;
     }
 }
 public static List<MatchupsToNotifyGetResult> GetMatchupsToNotify(int tournamentMatchupId)
 {
     using (TournamentsDataContext tdc = new TournamentsDataContext(ConfigurationManager.ConnectionStrings["StrongerOrgString"].ToString()))
     {
         List<MatchupsToNotifyGetResult> x = tdc.MatchupsToNotifyGet(null, false, tournamentMatchupId).ToList();
         return x;
     }
 }
 public static List<MatchupsToNotifyGetResult> GetMatchupsToNotify()
 {
     using (TournamentsDataContext tdc = new TournamentsDataContext())
     {
         List<MatchupsToNotifyGetResult> x = tdc.MatchupsToNotifyGet(null, true, null).ToList();
         return x;
     }
 }