Adds an association between a Project and a list of Organizations.

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

Syntax

C#
public void AddAssociatedOrganizations(
	int projectId,
	int[] organizationIds
)
Visual Basic
Public Sub AddAssociatedOrganizations ( 
	projectId As Integer,
	organizationIds As Integer()
)
Visual C++
public:
void AddAssociatedOrganizations(
	int projectId, 
	array<int>^ organizationIds
)

Parameters

projectId
Type: System..::..Int32
The Project Id
organizationIds
Type: array<System..::..Int32>[]()[][]
A List of OrganizationIds to associate with a Project.

See Also