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

Get instance of TrackTime from the database

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

Syntax

C#
public TracktimeInfo[] GetTracktimes(
	int tracktimeId,
	int applicationId,
	int userId,
	int primaryId,
	int currentGroupId
)
Visual Basic (Declaration)
Public Function GetTracktimes ( _
	tracktimeId As Integer, _
	applicationId As Integer, _
	userId As Integer, _
	primaryId As Integer, _
	currentGroupId As Integer _
) As TracktimeInfo()
Visual C++
public:
array<TracktimeInfo^>^ GetTracktimes(
	int tracktimeId, 
	int applicationId, 
	int userId, 
	int primaryId, 
	int currentGroupId
)

Parameters

tracktimeId
Type: System..::.Int32
The unique id of the TrackTime in the database
applicationId
Type: System..::.Int32
The unique id of the application
userId
Type: System..::.Int32
The unique id of the user
primaryId
Type: System..::.Int32
The primary id
currentGroupId
Type: System..::.Int32
the id of the current group

Return Value

An array of TracktimeInfo information structure, empty array if the TrackTime is not found

See Also