/// <summary>
 /// Create a new Venue object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="location">Initial value of the Location property.</param>
 public static Venue CreateVenue(global::System.Int32 id, global::System.String name, global::System.String location)
 {
     Venue venue = new Venue();
     venue.Id = id;
     venue.Name = name;
     venue.Location = location;
     return venue;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Venues EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToVenues(Venue venue)
 {
     base.AddObject("Venues", venue);
 }