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