Inheritance: System.Data.Objects.DataClasses.EntityObject
 /// <summary>
 /// Deprecated Method for adding a new object to the Shops EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToShops(Shop shop)
 {
     base.AddObject("Shops", shop);
 }
 /// <summary>
 /// Create a new Shop object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 public static Shop CreateShop(global::System.Int32 id, global::System.String name)
 {
     Shop shop = new Shop();
     shop.Id = id;
     shop.Name = name;
     return shop;
 }