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

Gets the list of clients for a particular group.

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

Syntax

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

Parameters

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

Return Value

DataSet containing all the information related to the clients created for a particular group. This DataSet consists of a single DataTable with the following columns.
  • accountId (System.Int32)Id of the Account.
  • ContactAddressId (System.Int32)Id of the Address record corresponding to the Customer.
  • GroupId (System.Int32)Id of the group to which the Customer belongs.
  • name (System.String)Name of the Customer.
  • screenName (System.String)Name to be displayed on the screen.
  • clientName (System.String)This is the concatenated value of name and screenName.
  • id (System.String)Id is the ID corresponding to the same Customer in an external system. (To be used if an integration between Time and Expense system and that external application is desired.)
  • ContactPerson (System.String)Name of the contact person for the Customer.
  • ContactPhone (System.String)Contact phone number of the Customer.
  • emailAddress (System.String)Email Address of the Customer or the contact person of the Customer.
  • Notes (System.String)Notes describing some things about the Customer.
  • isActive (System.String)Flag (Y/N) indicating whether the Customer is Active or not.

See Also