Example #1
0
        public List <Common.Data.General.OverallCombat> GetAllCombatCompetitiveStats(Guid profileGuid)
        {
            var combatStats = new List <Common.Data.General.OverallCombat>();

            try
            {
                combatStats = new Store.Service.Combat.CombatStore(_connectionString).GetAllCompetitiveCombatStats(profileGuid);
            }
            catch (Exception e)
            { }

            return(combatStats);
        }
Example #2
0
        public Common.Data.General.OverallCombat GetLatestCompetitiveCombatStats(Guid profileGuid)
        {
            var combatStat = new Common.Data.General.OverallCombat();

            try
            {
                combatStat = new Store.Service.Combat.CombatStore(_connectionString).GetLatestCompetitiveCombatStats(profileGuid);
            }
            catch (Exception e)
            { }

            return(combatStat);
        }