Beispiel #1
0
 public void AddToCustomerDemographics(CustomerDemographic customerDemographic)
 {
     base.AddObject("CustomerDemographics", customerDemographic);
 }
Beispiel #2
0
 public static CustomerDemographic CreateCustomerDemographic(string customerTypeID)
 {
     CustomerDemographic customerDemographic = new CustomerDemographic();
     customerDemographic.CustomerTypeID = customerTypeID;
     return customerDemographic;
 }