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

CreateCustomerDemographics() public static method

Create a new CustomerDemographics object.
public static CreateCustomerDemographics ( global customerTypeID ) : CustomerDemographics
customerTypeID global Initial value of the CustomerTypeID property.
return CustomerDemographics
        public static CustomerDemographics CreateCustomerDemographics(global::System.String customerTypeID)
        {
            CustomerDemographics customerDemographics = new CustomerDemographics();
            customerDemographics.CustomerTypeID = customerTypeID;
            return customerDemographics;
        }