internal void Add( LineUp lineUp) { Add( lineUp.QB, lineUp.QB.Stats); Add( lineUp.RB1, lineUp.RB1.Stats); Add( lineUp.RB2, lineUp.RB2.Stats); Add( lineUp.PR1, lineUp.PR1.Stats); Add( lineUp.PR2, lineUp.PR2.Stats); Add( lineUp.PR3, lineUp.PR3.Stats); Add( lineUp.Kicker, lineUp.Kicker.Stats); }
public SeasonRoster() { PlayerLogs = new List <PlayerReportModel>(); TotalPoints = 0; LineUp = new LineUp[17]; GameScore = new int[17]; for (int i = 0; i < 17; i++) { LineUp[i] = new LineUp(); GameScore[i] = 0; } Contribution = new PlayerContributions(); }