Beispiel #1
0
 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;
 }
Beispiel #2
0
 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>();
 }