Beispiel #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);
 }
Beispiel #2
0
 /// <summary>
 /// Create a new Customer object.
 /// </summary>
 /// <param name="customerID">Initial value of the CustomerID property.</param>
 /// <param name="membershipUserID">Initial value of the MembershipUserID property.</param>
 /// <param name="custFirstName">Initial value of the CustFirstName property.</param>
 /// <param name="custLastName">Initial value of the CustLastName property.</param>
 public static Customer CreateCustomer(global::System.Int32 customerID, global::System.Int32 membershipUserID, global::System.String custFirstName, global::System.String custLastName)
 {
     Customer customer = new Customer();
     customer.CustomerID = customerID;
     customer.MembershipUserID = membershipUserID;
     customer.CustFirstName = custFirstName;
     customer.CustLastName = custLastName;
     return customer;
 }