/// <summary>
 /// Deprecated Method for adding a new object to the Prizes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPrizes(Prize prize)
 {
     base.AddObject("Prizes", prize);
 }
 /// <summary>
 /// Create a new Prize object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 public static Prize CreatePrize(global::System.Int32 id, global::System.String description, global::System.String name)
 {
     Prize prize = new Prize();
     prize.Id = id;
     prize.Description = description;
     prize.Name = name;
     return prize;
 }