DeleteAll Method (Uom)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more uom records from the Uom table, as specified by the filter parameters. Passing no filter parameters will remove all uom records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal uomId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim uomId As Nullable(Of Integer)
Uom.DeleteAll(sessionId, uomId)
public static void DeleteAll(
int sessionId,
Nullable<int> uomId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- uomId
- Optional filter parameter. Holds the ID of a uom to be deleted.