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

Constructor

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

Syntax

C#
public PayrollCategoryInfo(
	int payrollCategoryId,
	string payrollCode,
	string payrollFullName,
	string notes,
	string id,
	decimal availableTime,
	decimal usedTime,
	bool isActive
)
Visual Basic (Declaration)
Public Sub New ( _
	payrollCategoryId As Integer, _
	payrollCode As String, _
	payrollFullName As String, _
	notes As String, _
	id As String, _
	availableTime As Decimal, _
	usedTime As Decimal, _
	isActive As Boolean _
)
Visual C++
public:
PayrollCategoryInfo(
	int payrollCategoryId, 
	String^ payrollCode, 
	String^ payrollFullName, 
	String^ notes, 
	String^ id, 
	Decimal availableTime, 
	Decimal usedTime, 
	bool isActive
)

Parameters

payrollCategoryId
Type: System..::.Int32
The payroll category id
payrollCode
Type: System..::.String
The payroll code
payrollFullName
Type: System..::.String
The payroll full name
notes
Type: System..::.String
The payroll notes
id
Type: System..::.String
The payroll foreign key
availableTime
Type: System..::.Decimal
The available time
usedTime
Type: System..::.Decimal
The user time
isActive
Type: System..::.Boolean
true if it is an Active item

See Also