public void Get(PlayerSeasonLogs players, string position)
 {
     try
     {
         Dictionary <string, string> values = new Dictionary <string, string>()
         {
             { "@pos", position }
         };
         List <string[]> results = SelectProc("GetPlayerSeasonLogByPos", values);
         Player          player;
         foreach (string[] result in results)
         {
             player                       = new Player();
             player.seasonLog             = new PlayerStats();
             player.player.playerid       = result[0];
             player.player.fname          = result[1];
             player.player.lname          = result[2];
             player.player.number         = result[3];
             player.player.position       = result[4];
             player.team.abbr             = result[5];
             player.team.city             = result[6];
             player.team.name             = result[7];
             player.seasonLog.gamesPlayed = result[8];
             player.seasonLog.passAtt     = result[9];
             player.seasonLog.passComp    = result[10];
             player.seasonLog.passYds     = result[11];
             player.seasonLog.passTds     = result[12];
             player.seasonLog.intc        = result[13];
             player.seasonLog.rushAtt     = result[14];
             player.seasonLog.rushYds     = result[15];
             player.seasonLog.rushTds     = result[16];
             player.seasonLog.fum         = result[17];
             player.seasonLog.rec         = result[18];
             player.seasonLog.recYds      = result[19];
             player.seasonLog.recTds      = result[20];
             player.seasonLog.fgAtt       = result[21];
             player.seasonLog.fgMade      = result[22];
             player.seasonLog.xpAtt       = result[23];
             player.seasonLog.xpMade      = result[24];
             player.seasonLog.fgPct       = result[25];
             player.seasonLog.xpPct       = result[26];
             players.playerseasonlogs.Add(player);
         }
     }
     catch (Exception e)
     {
         throw new Exception(e.Message, e);
     }
 }
Exemplo n.º 2
0
        public Object GetSeasonStatsByPosition(string position)
        {
            PlayerSeasonLogs    players = new PlayerSeasonLogs();
            PlayerSeasonService service = new PlayerSeasonService();

            try
            {
                service.Get(players);
            }
            catch (Exception e)
            {
                return(e);
            }
            return(players);
        }
Exemplo n.º 3
0
        public Object GetAllSeasonStats()
        {
            PlayerSeasonLogs    players = new PlayerSeasonLogs();
            PlayerSeasonService service = new PlayerSeasonService();

            try
            {
                service.Get(players);
            }
            catch (Exception e)
            {
                return(e);
            }
            return(players);
        }