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