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