コード例 #1
0
 public League(int id, string name, Season ls)
 {
     this.Id           = id;
     this.Name         = name;
     this.LeagueSeason = ls;
 }
コード例 #2
0
 public League(int id, string name, Season ls, List <Round> rounds) : this(id, name, ls)
 {
     this.Rounds = rounds;
 }