Example #1
0
        public override global::System.Data.DataSet Clone()
        {
            FootballDataSet cln = ((FootballDataSet)(base.Clone()));

            cln.InitVars();
            cln.SchemaSerializationMode = this.SchemaSerializationMode;
            return(cln);
        }
        public static int GetMatchWinnerIndexByMatchID(FootballDataSet.MatchDataTable match, int matchId)
        {
            int indexToReturn = -1;
            DataRow matchRow = match.FindByMatchID(matchId);

            if (string.IsNullOrEmpty(matchRow["MatchWinner"].ToString()))
                return indexToReturn;

            indexToReturn = int.Parse(matchRow["MatchWinner"].ToString());
            return indexToReturn - 1;
        }
Example #3
0
        public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs)
        {
            FootballDataSet ds = new FootballDataSet();

            global::System.Xml.Schema.XmlSchemaComplexType type     = new global::System.Xml.Schema.XmlSchemaComplexType();
            global::System.Xml.Schema.XmlSchemaSequence    sequence = new global::System.Xml.Schema.XmlSchemaSequence();
            global::System.Xml.Schema.XmlSchemaAny         any      = new global::System.Xml.Schema.XmlSchemaAny();
            any.Namespace = ds.Namespace;
            sequence.Items.Add(any);
            type.Particle = sequence;
            global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
            if (xs.Contains(dsSchema.TargetNamespace))
            {
                global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
                global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
                try {
                    global::System.Xml.Schema.XmlSchema schema = null;
                    dsSchema.Write(s1);
                    for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext();)
                    {
                        schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
                        s2.SetLength(0);
                        schema.Write(s2);
                        if ((s1.Length == s2.Length))
                        {
                            s1.Position = 0;
                            s2.Position = 0;
                            for (; ((s1.Position != s1.Length) &&
                                    (s1.ReadByte() == s2.ReadByte()));)
                            {
                                ;
                            }
                            if ((s1.Position == s1.Length))
                            {
                                return(type);
                            }
                        }
                    }
                }
                finally {
                    if ((s1 != null))
                    {
                        s1.Close();
                    }
                    if ((s2 != null))
                    {
                        s2.Close();
                    }
                }
            }
            xs.Add(dsSchema);
            return(type);
        }
        public static ObservableCollection<PlayerMatch> GetPlayerMatches(FootballDataSet footballDataSet, int matchId)
        {
            ObservableCollection<PlayerMatch> _playerMatches = new ObservableCollection<PlayerMatch>();

            foreach (DataRowView row in footballDataSet.PlayerMatch.DefaultView)
            {
                PlayerMatch tempPlayerMatch = new PlayerMatch();
                tempPlayerMatch.PlayerID = int.Parse(row["PlayerID"].ToString());
                tempPlayerMatch.PlayerName = GetPlayerNameFromID(footballDataSet.Player, tempPlayerMatch.PlayerID);
                tempPlayerMatch.TeamID = int.Parse(row["TeamID"].ToString());
                tempPlayerMatch.TeamName = GetTeamNameFromID(footballDataSet.Team, tempPlayerMatch.TeamID);
                tempPlayerMatch.MatchID = int.Parse(row["MatchID"].ToString());

                if (matchId == tempPlayerMatch.MatchID || matchId == -1)
                    _playerMatches.Add(tempPlayerMatch);
            }

            return _playerMatches;
        }
 public static int GetDefaultMatchId(FootballDataSet.MatchDataTable match)
 {
     return match.First().MatchID;
 }
 public static string GetLastTeamName(FootballDataSet.TeamDataTable team)
 {
     return team.Last().TeamName;
 }
        private static List<Match> CompleteMatchData(FootballDataSet.MatchDataTable match)
        {
            List<Match> allMatches = new List<Match>();

            foreach (FootballDataSet.MatchRow row in match)
            {
                Match tempMatch = new Match();
                tempMatch.MatchID = row.MatchID;
                tempMatch.MatchDate = Utils.ChangeDateFormatToYYYYMMDD(row.MatchDate);
                tempMatch.MatchWinner = GetValueForMatchWinner(row);
                allMatches.Add(tempMatch);
            }

            return allMatches;
        }
        public static int GetValueForMatchWinner(FootballDataSet.MatchRow match)
        {
            if (match.IsMatchWinnerNull())
                return -1;

            return match.MatchWinner;
        }
 public static string GetTeamNameFromID(FootballDataSet.TeamDataTable team, int teamID)
 {
     return team.FindByTeamID(teamID).TeamName.ToString();
 }
        public static List<Match> GetRelevantMatches(FootballDataSet.MatchDataTable match)
        {
            List<Match> allMatches = CompleteMatchData(match);
            List<Match> relevantMatches = RemoveMatchesOlderThanAMonth(allMatches);

            return relevantMatches;
        }
 public static string GetPlayerNameFromID(FootballDataSet.PlayerDataTable player, int playerID)
 {
     return player.FindByPlayerID(playerID).PlayerName.ToString();
 }