-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #587 from lukzas/feature/Add_namespaces_to_CSharpS…
- Loading branch information
Showing
5 changed files
with
191 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
122 changes: 122 additions & 0 deletions
122
NBi.Testing.Core/Scalar/Resolver/Resources/PurchaseOrders.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<PurchaseOrders> | ||
<PurchaseOrder PurchaseOrderNumber="99503" OrderDate="1999-10-20"> | ||
<Address Type="Shipping"> | ||
<Name>Ellen Adams</Name> | ||
<Street>123 Maple Street</Street> | ||
<City>Mill Valley</City> | ||
<State>CA</State> | ||
<Zip>10999</Zip> | ||
<Country>USA</Country> | ||
</Address> | ||
<Address Type="Billing"> | ||
<Name>Tai Yee</Name> | ||
<Street>8 Oak Avenue</Street> | ||
<City>Old Town</City> | ||
<State>PA</State> | ||
<Zip>95819</Zip> | ||
<Country>USA</Country> | ||
</Address> | ||
<DeliveryNotes>Please leave packages in shed by driveway.</DeliveryNotes> | ||
<Items> | ||
<Item PartNumber="872-AA"> | ||
<ProductName>Lawnmower</ProductName> | ||
<Quantity>1</Quantity> | ||
<USPrice>148.95</USPrice> | ||
<Comment>Confirm this is electric</Comment> | ||
</Item> | ||
<Item PartNumber="926-AA"> | ||
<ProductName>Baby Monitor</ProductName> | ||
<Quantity>2</Quantity> | ||
<USPrice>39.98</USPrice> | ||
<ShipDate>1999-05-21</ShipDate> | ||
</Item> | ||
</Items> | ||
</PurchaseOrder> | ||
<PurchaseOrder PurchaseOrderNumber="99505" OrderDate="1999-10-22"> | ||
<Address Type="Shipping"> | ||
<Name>Cristian Osorio</Name> | ||
<Street>456 Main Street</Street> | ||
<City>Buffalo</City> | ||
<State>NY</State> | ||
<Zip>98112</Zip> | ||
<Country>USA</Country> | ||
</Address> | ||
<Address Type="Billing"> | ||
<Name>Cristian Osorio</Name> | ||
<Street>456 Main Street</Street> | ||
<City>Buffalo</City> | ||
<State>NY</State> | ||
<Zip>98112</Zip> | ||
<Country>USA</Country> | ||
</Address> | ||
<DeliveryNotes>Please notify by email before shipping.</DeliveryNotes> | ||
<Items> | ||
<Item PartNumber="456-NM"> | ||
<ProductName>Power Supply</ProductName> | ||
<Quantity>1</Quantity> | ||
<USPrice>45.99</USPrice> | ||
</Item> | ||
</Items> | ||
</PurchaseOrder> | ||
<PurchaseOrder PurchaseOrderNumber="99504" OrderDate="1999-10-22"> | ||
<Address Type="Shipping"> | ||
<Name>Jessica Arnold</Name> | ||
<Street>4055 Madison Ave</Street> | ||
<City>Seattle</City> | ||
<State>WA</State> | ||
<Zip>98112</Zip> | ||
<Country>USA</Country> | ||
</Address> | ||
<Address Type="Billing"> | ||
<Name>Jessica Arnold</Name> | ||
<Street>4055 Madison Ave</Street> | ||
<City>Buffalo</City> | ||
<State>NY</State> | ||
<Zip>98112</Zip> | ||
<Country>USA</Country> | ||
</Address> | ||
<DeliveryNotes>Please do not deliver on Saturday.</DeliveryNotes> | ||
<Items> | ||
<Item PartNumber="898-AZ"> | ||
<ProductName>Computer Keyboard</ProductName> | ||
<Quantity>1</Quantity> | ||
<USPrice>29.99</USPrice> | ||
</Item> | ||
<Item PartNumber="898-AM"> | ||
<ProductName>Wireless Mouse</ProductName> | ||
<Quantity>1</Quantity> | ||
<USPrice>14.99</USPrice> | ||
</Item> | ||
</Items> | ||
</PurchaseOrder> | ||
<aw:PurchaseOrder PONumber="11223" Date="2000-01-15" xmlns:aw="http://www.adventure-works.com"> | ||
<aw:ShippingAddress> | ||
<aw:Name>Chris Preston</aw:Name> | ||
<aw:Street>123 Main St.</aw:Street> | ||
<aw:City>Seattle</aw:City> | ||
<aw:State>WA</aw:State> | ||
<aw:Zip>98113</aw:Zip> | ||
<aw:Country>USA</aw:Country> | ||
</aw:ShippingAddress> | ||
<aw:BillingAddress> | ||
<aw:Name>Chris Preston</aw:Name> | ||
<aw:Street>123 Main St.</aw:Street> | ||
<aw:City>Seattle</aw:City> | ||
<aw:State>WA</aw:State> | ||
<aw:Zip>98113</aw:Zip> | ||
<aw:Country>USA</aw:Country> | ||
</aw:BillingAddress> | ||
<aw:DeliveryInstructions>Ship only complete order.</aw:DeliveryInstructions> | ||
<aw:Item PartNum="LIT-01"> | ||
<aw:ProductID>Litware Networking Card</aw:ProductID> | ||
<aw:Qty>1</aw:Qty> | ||
<aw:Price>20.99</aw:Price> | ||
</aw:Item> | ||
<aw:Item PartNum="LIT-25"> | ||
<aw:ProductID>Litware 17in LCD Monitor</aw:ProductID> | ||
<aw:Qty>1</aw:Qty> | ||
<aw:Price>199.99</aw:Price> | ||
</aw:Item> | ||
</aw:PurchaseOrder> | ||
</PurchaseOrders> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters