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

Checks whether a Customer with a particular screen name exists.

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

Syntax

C#
public int AccountExists(
	string screenName,
	int currentGroupId
)
Visual Basic (Declaration)
Public Function AccountExists ( _
	screenName As String, _
	currentGroupId As Integer _
) As Integer
Visual C++
public:
int AccountExists(
	String^ screenName, 
	int currentGroupId
)

Parameters

screenName
Type: System..::.String
Screen name corresponding to a Customer which needs to be checked.
currentGroupId
Type: System..::.Int32
The id of the current group

Return Value

Id of the Customer if found, -1 otherwise.

See Also