/// <summary>
 /// Deprecated Method for adding a new object to the Teams EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToTeams(Team team)
 {
     base.AddObject("Teams", team);
 }
 /// <summary>
 /// Create a new Team object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="sportSocietyID">Initial value of the SportSocietyID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="isActive">Initial value of the IsActive property.</param>
 public static Team CreateTeam(global::System.Int32 id, global::System.Int32 sportSocietyID, global::System.String name, global::System.Boolean isActive)
 {
     Team team = new Team();
     team.ID = id;
     team.SportSocietyID = sportSocietyID;
     team.Name = name;
     team.IsActive = isActive;
     return team;
 }