Northwind.EntityFramework.ModelFirst.Oracle.CustomerDemographics.CreateCustomerDemographics C# (CSharp) Method

CreateCustomerDemographics() public static method

Create a new CustomerDemographics object.
public static CreateCustomerDemographics ( string customerTypeID ) : CustomerDemographics
customerTypeID string Initial value of CustomerTypeID.
return CustomerDemographics
        public static CustomerDemographics CreateCustomerDemographics(string customerTypeID)
        {
            CustomerDemographics customerDemographics = new CustomerDemographics();
            customerDemographics.CustomerTypeID = customerTypeID;
            return customerDemographics;
        }