... and what are you supposed to do yourself.
Given this:
ICurrentInvoiceData invoiceData = _session.CurrentInvoiceData.Create(debtor);
ICurrentInvoice invoice = _session.CurrentInvoice.CreateFromData(invoiceData);
This will fail because invoiceData.DebtorName is empty.
Why is it that? I've just created invoiceData from debtor.
Is line 1 only to estabish relation?
invoiceData has a property named "Debtor". Am I supposed to equal this with the same debtor that I used to create the object?
Can you recommend any good reading on this?
(I cant find any good examples nor best practice and the document api text is somewhat minimal / autogenerated).
Best
Jesper


