예제 #1
0
 public PlayerLoader(FanastySeason season)
 {
     _season            = season;
     _replacementScores = new Dictionary <FanastyPosition, int>()
     {
         { FanastyPosition.QB, season.ReplacementValue?.QB ?? 0 },
         { FanastyPosition.RB, season.ReplacementValue?.RB ?? 0 },
         { FanastyPosition.WR, season.ReplacementValue?.WR ?? 0 },
         { FanastyPosition.K, season.ReplacementValue?.K ?? 0 },
         { FanastyPosition.DST, season.ReplacementValue?.DST ?? 0 },
     };
 }
예제 #2
0
 /// <summary />
 public void ParseSeason(int year, ref FanastySeason season)
 {
 }