1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<customers>
<count>4</count>
<customerA>
<wrapper repeat-customer="true" state="WA" zip="98059" customer-id="12345"
order-count="3">
<customerA>
<wrapper repeat-customer="true" state="LA" zip="98095" customer-id="54321"
order-count="1"/>
</customerA>
</wrapper>
</customerA>
<customerA>
<wrapper repeat-customer="false" state="WA" zip="98059" customer-id="83838"/>
</customerA>
<customerB>
<wrapper repeat-customer="true" state="WA" zip="98095">
<customer-id>12346</customer-id>
<name first-name="Larry" last-name="Adams"/>
<order-count>4</order-count>
</wrapper>
</customerB>
<customerB>
<wrapper repeat-customer="true" state="WA" zip="98095" discount="0.9">
<customer-id>83222</customer-id>
<name first-name="Gary" last-name="Adams"/>
<order-count>2</order-count>
</wrapper>
</customerB>
</customers>
|