'Declaration
Public Overloads Function SaveOrderStatusChange( _ ByVal orderID As Guid, _ ByVal description As String, _ ByVal level As StatusBase.OrderStatusBase, _ ByVal timestamp As Date _ ) As Object
'Usage
Dim instance As DataAccess Dim orderID As Guid Dim description As String Dim level As StatusBase.OrderStatusBase Dim timestamp As Date Dim value As Object value = instance.SaveOrderStatusChange(orderID, description, level, timestamp)
public object SaveOrderStatusChange( Guid orderID, string description, StatusBase.OrderStatusBase level, DateTime timestamp )
public: Object^ SaveOrderStatusChange( Guid orderID, String^ description, StatusBase.OrderStatusBase level, DateTime timestamp )
Parameters
- orderID
- The unique identifier of the Order as a Guid.
- description
- The new label assigned to the status update.
- level
- The new status of the Order as a OrderStatusBase value.
- 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.