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