ApiExamples.ExNestedMailMergeCustom.Customer.Customer C# (CSharp) Method

Customer() public method

public Customer ( string aFullName, string anAddress ) : System.Collections
aFullName string
anAddress string
return System.Collections
            public Customer(string aFullName, string anAddress)
            {
                this.mFullName = aFullName;
                this.mAddress = anAddress;
                this.mOrders = new OrderList();
            }
ExNestedMailMergeCustom.Customer