Skip to content
This repository was archived by the owner on Apr 6, 2025. It is now read-only.

Step 4: Create SalesOrder

Ole Melhus edited this page Mar 6, 2017 · 4 revisions
var order = new SalesOrder
{
    customer = "10001",
    description = "This is the order description"
};
order.Add(new SalesOrderLine
{
    inventory = "2",
    quantity = 5,
    lineDescription = "Product line description",
    unitPrice = 500
});
                    
await vismaNet.SalesOrder.Add(order);

Clone this wiki locally