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

Gets the timesheet task Information for active tasks corresponding to a particular timesheet.

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

Syntax

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

Parameters

groupId
Type: System..::.Int32
The unique Id of group
timesheetId
Type: System..::.Int32
Id of the timesheet for which all the tasks is to be retrieved. If timesheetId is -1 then returns all active tasks of the group

Return Value

Instance of the TimesheetTaskInfo object containing all the information related to a particular timesheet TimesheetTaskInfo

See Also