Get the list of collections that match the parameters passed in.

Namespace: Caisis.DataAccess
Assembly: Caisis.DataAccess (in Caisis.DataAccess.dll) Version: 4.0.4947.22627

Syntax

C#
public DataTable GetCollections(
	string name,
	string type,
	string status,
	string dateFrom,
	string dateTo,
	bool viewAll
)
Visual Basic
Public Function GetCollections ( 
	name As String,
	type As String,
	status As String,
	dateFrom As String,
	dateTo As String,
	viewAll As Boolean
) As DataTable
Visual C++
public:
DataTable^ GetCollections(
	String^ name, 
	String^ type, 
	String^ status, 
	String^ dateFrom, 
	String^ dateTo, 
	bool viewAll
)

Parameters

name
Type: System..::..String
Name of the collection.
type
Type: System..::..String
Type of the collection.
status
Type: System..::..String
Status of the collection.
dateFrom
Type: System..::..String
Start of the date range of the collection.
dateTo
Type: System..::..String
End of the date range of the collection.
viewAll
Type: System..::..Boolean
Indicates if we should show collections with status 'Transaction Complete' or not.

Return Value

Type: DataTable
DataTable with collections based on search criteria.

See Also