Aspose.Words.Examples.CSharp.Mail_Merge.NestedMailMergeCustom.Customer.Customer C# (CSharp) Method

Customer() public method

public Customer ( string aFullName, string anAddress ) : Aspose.Words
aFullName string
anAddress string
return Aspose.Words
            public Customer(string aFullName, string anAddress)
            {
                mFullName = aFullName;
                mAddress = anAddress;
                mOrders = new OrderList();
            }
NestedMailMergeCustom.Customer