Example #1
0
 public static Customer CreateCustomer(string customerID, string companyName)
 {
     Customer customer = new Customer();
     customer.CustomerID = customerID;
     customer.CompanyName = companyName;
     return customer;
 }
Example #2
0
 public void AddToCustomers(Customer customer)
 {
     base.AddObject("Customers", customer);
 }