Created
June 29, 2016 12:14
-
-
Save henzard/0300e2b17405aabdb855cebc256361f6 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
_api.PurchaseOrders.Create(new PurchaseOrder() | |
{ | |
Contact = new Contact() | |
{ | |
ContactNumber = "C0001" | |
}, | |
Number = "4920249", | |
LineItems = new List<LineItem>() | |
{ | |
new LineItem() { | |
UnitAmount = 30.33M, | |
Description = "Plant Hire", | |
Quantity = 2, | |
AccountCode = "200", | |
TaxType = "NONE" | |
}, | |
new LineItem() { | |
UnitAmount = 35.33M, | |
Description = "Car Hire", | |
Quantity = 1, | |
AccountCode = "200", | |
TaxType = "NONE" | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment