Exemplo n.º 1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Customers EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCustomers(Customer customer)
 {
     base.AddObject("Customers", customer);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Create a new Customer object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="address">Initial value of the Address property.</param>
 public static Customer CreateCustomer(global::System.Int32 id, global::System.String name, global::System.String address)
 {
     Customer customer = new Customer();
     customer.Id = id;
     customer.Name = name;
     customer.Address = address;
     return customer;
 }