コード例 #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(Customers customers)
 {
     base.AddObject("Customers", customers);
 }
コード例 #2
0
 /// <summary>
 /// Create a new Customers object.
 /// </summary>
 /// <param name="customerID">Initial value of the CustomerID property.</param>
 /// <param name="companyName">Initial value of the CompanyName property.</param>
 public static Customers CreateCustomers(global::System.String customerID, global::System.String companyName)
 {
     Customers customers = new Customers();
     customers.CustomerID = customerID;
     customers.CompanyName = companyName;
     return customers;
 }