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

Gets a list of all tasks belonging to a particular timesheet.

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

Syntax

C#
public ArrayList GetTimesheetTasksForTimesheetId(
	int groupId,
	int timesheetId
)
Visual Basic (Declaration)
Public Function GetTimesheetTasksForTimesheetId ( _
	groupId As Integer, _
	timesheetId As Integer _
) As ArrayList
Visual C++
public:
ArrayList^ GetTimesheetTasksForTimesheetId(
	int groupId, 
	int timesheetId
)

Parameters

groupId
Type: System..::.Int32
The Unique Id of the group
timesheetId
Type: System..::.Int32
Id of the timesheet for which the task list has to be retrieved. If the timesheetId is -1 then will return all the active tasks of the group.

Return Value

ArrayList of the TimesheetTaskInfo objects corresponding to each task that belongs to a particular timesheet.

See Also