[This is preliminary documentation and is subject to change.]

Get a list of all the Customer and Projects for a particular group.

Namespace:  OfficeClip.DBLayer.Projects
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public DataSet GetClientAndProjectList(
	int groupId
)
Visual Basic (Declaration)
Public Function GetClientAndProjectList ( _
	groupId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetClientAndProjectList(
	int groupId
)

Parameters

groupId
Type: System..::.Int32
The unique id for the group.

Return Value

DataSet containing the list of Customer and Projects. This DataSet consists of a single DataTable with the following columns.
  • id (System.Int32)Id of the Customer and/or the Project.
  • screenName (System.String)Screen name of the Customer or the Project.
  • accountId (System.Int32)Id of the Customer.
  • AccountName (System.String)Name of the Customer.
  • projectId (System.Int32)Id of the Project.
  • projectNameName of the Project.

See Also