Created
April 21, 2016 12:20
-
-
Save henzard/a741b4357c2639734918a033851b77fd 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
var invoice = Api.Create(new Invoice | |
{ | |
Contact = new Contact { Name = "ABC Limited" }, | |
Type = InvoiceType.AccountsReceivable, | |
LineItems = new List<LineItem> | |
{ | |
new LineItem | |
{ | |
AccountCode = "200", | |
Description = "Good value item", | |
UnitAmount = 25.6m, | |
Quantity = 1m | |
}, | |
new LineItem | |
{ | |
AccountCode = "200", | |
Description = "Another good value item", | |
UnitAmount = 125.65m, | |
Quantity = 5m | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment