public League(int id, string name, Season ls) { this.Id = id; this.Name = name; this.LeagueSeason = ls; }
public League(int id, string name, Season ls, List <Round> rounds) : this(id, name, ls) { this.Rounds = rounds; }