Created
August 26, 2014 10:29
-
-
Save ArveSystad/dbe0cac8c95dfd96da5b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| foreach (OrderForm form in order.OrderForms) | |
| { | |
| decimal totalTaxes = 0; | |
| foreach (Shipment shipment in form.Shipments) | |
| { | |
| foreach (LineItem item in shipment.Parent.LineItems) | |
| { | |
| [...] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment