'Declaration
Public Function MarkInvoiceTransferred( _ ByVal invoiceID As Guid, _ ByVal transferred As Boolean _ ) As Boolean
'Usage
Dim instance As DataAccess Dim invoiceID As Guid Dim transferred As Boolean Dim value As Boolean value = instance.MarkInvoiceTransferred(invoiceID, transferred)
public bool MarkInvoiceTransferred( Guid invoiceID, bool transferred )
public: bool MarkInvoiceTransferred( Guid invoiceID, bool transferred )
Parameters
- invoiceID
- The unique identifier of the Invoice as a Guid.
- transferred
- Indicates if the given Invoice has been exported or transferred.
Return Value
Returns true if the Invoice record was successfully updated. Otherwise, returns false.