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

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

Syntax

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

Parameters

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

See Also