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

Gets the payroll list

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

Syntax

C#
public PayrollCategoryInfo[] GetPayrollList(
	int groupId,
	int userId,
	int payrollCategoryId
)
Visual Basic (Declaration)
Public Function GetPayrollList ( _
	groupId As Integer, _
	userId As Integer, _
	payrollCategoryId As Integer _
) As PayrollCategoryInfo()
Visual C++
public:
array<PayrollCategoryInfo^>^ GetPayrollList(
	int groupId, 
	int userId, 
	int payrollCategoryId
)

Parameters

groupId
Type: System..::.Int32
The unique id of the group
userId
Type: System..::.Int32
The unique id of the user. Only returns active category for the user. If -1 returns categories all categories for all users
payrollCategoryId
Type: System..::.Int32
The unique id of the payroll category, if -1 returns all the categories

Return Value

The array of the payroll category object

See Also