Returns the full timeline of all patients (by dataset) for the specified Protocol.

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

Syntax

C#
public static DataTable GetFullTimeline(
	int protocolId,
	IEnumerable<int> schemaIds,
	string dataset,
	bool includeDeceasedPatients
)
Visual Basic
Public Shared Function GetFullTimeline ( 
	protocolId As Integer,
	schemaIds As IEnumerable(Of Integer),
	dataset As String,
	includeDeceasedPatients As Boolean
) As DataTable
Visual C++
public:
static DataTable^ GetFullTimeline(
	int protocolId, 
	IEnumerable<int>^ schemaIds, 
	String^ dataset, 
	bool includeDeceasedPatients
)

Parameters

protocolId
Type: System..::..Int32
The pri key of the Protocol.
schemaIds
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Int32>)>)>
Restricts search to patients on these treatment arms.
dataset
Type: System..::..String
Restricts to patients in this dataset.
includeDeceasedPatients
Type: System..::..Boolean
includes a list of deceased patients in the list

Return Value

Type: DataTable
A list of all patients' schedules on the Protocol.

See Also