public SessionData(User u, ScoreCard sc, Course c, List <User> us, List <ScoreCard> scs) { this.currentUser = u; this.currentScoreCard = sc; this.currentCourse = c; this.watchingUsers = us; this.watchingScoreCards = scs; }
public SessionData(User u, ScoreCard sc, Course c) { this.currentUser = u; this.currentScoreCard = sc; this.currentCourse = c; this.watchingUsers = new List <User>(); this.watchingScoreCards = new List <ScoreCard>(); }