'Declaration
Public Overloads Function SaveOrderStatusChange( _ ByVal orderID As Guid, _ ByVal description As String, _ ByVal timestamp As Date _ ) As Boolean
'Usage
Dim instance As DataAccess Dim orderID As Guid Dim description As String Dim timestamp As Date Dim value As Boolean value = instance.SaveOrderStatusChange(orderID, description, timestamp)
Parameters
- orderID
- The unique identifier of the Order as a Guid.
- description
- The new label assigned to the status update.
- timestamp
- The exact date and time that the status change occurred.
Dates should be specified as Local or UTC by use of the System.DateTime.Kind property. Dates with the System.DateTime.Kind property not set (Unspecified) will be interpreted as UTC.
Return Value
Returns true if the status of the Order was successfully updated. Otherwise, returns false.