GetAll Method (ProcessClass)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetAll() method retrieves one or more process class records from the Process_Class table, as specified by the filter parameters. Passing no filter parameters will retrieve all process class records from the table.
'Declaration
Public Shared Function GetAll( _
ByVal processClassId As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim processClassId As String
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = ProcessClass.GetAll(processClassId, lastEditBy, lastEditAt)
public static DataSet GetAll(
string processClassId,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- processClassId
- Optional filter parameter. Holds the ID of a process class to be retrieved.
- lastEditBy
- Optional filter parameter. Holds the ID of the user who added or last changed the record.
- lastEditAt
- Optional filter parameter. Holds a date/time when the record was added or last edited.
Return Value
Returns a DataSet that contains all the process class records in the Process_Class table that satisfy the specified filters. If no matching records are found, an empty DataSet is returned.
The columns of the returned DataSet are described below.
|
Column Name |
Description |
|---|---|
|
process_class_id |
A string that is the ID of the Process class. |
|
last_edit_comment |
A string that contains comments about why record was changed, from the Process table. |
|
last_edit_by |
A string that is the ID of the user that last edited this record, from the Process table. |
|
last_edit_at |
A datetime that specifies when the record was added or last modified, from the Process table. |