Gets a DataSet containing Projects with their associated stages and events. Optionally filtered by Project and/or Organization. Table 0: Projects Table 1: Stages Table 2: Events NOTE: Projects with no stages will not be returned.

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

Syntax

C#
public DataSet GetProjectsStagesAndEvents(
	IEnumerable<int> projectIds,
	IEnumerable<int> organizationIds
)
Visual Basic
Public Function GetProjectsStagesAndEvents ( 
	projectIds As IEnumerable(Of Integer),
	organizationIds As IEnumerable(Of Integer)
) As DataSet
Visual C++
public:
DataSet^ GetProjectsStagesAndEvents(
	IEnumerable<int>^ projectIds, 
	IEnumerable<int>^ organizationIds
)

Parameters

projectIds
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Int32>)>)>

[Missing <param name="projectIds"/> documentation for "M:Caisis.DataAccess.ProjectManagementDa.GetProjectsStagesAndEvents(System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32})"]

organizationIds
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Int32>)>)>

[Missing <param name="organizationIds"/> documentation for "M:Caisis.DataAccess.ProjectManagementDa.GetProjectsStagesAndEvents(System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32})"]

Return Value

Type: DataSet

[Missing <returns> documentation for "M:Caisis.DataAccess.ProjectManagementDa.GetProjectsStagesAndEvents(System.Collections.Generic.IEnumerable{System.Int32},System.Collections.Generic.IEnumerable{System.Int32})"]

See Also