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

Constuctor to create a user payroll object

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

Syntax

C#
public UserPayrollInfo(
	string employeeId,
	BusinessConstants..::.TimesheetPeriod timesheetPeriod,
	DateTime payrollStartDate,
	DateTime joiningDate,
	DateTime leavingDate,
	string payrollNotes,
	string field1,
	string field2,
	string field3,
	string field4,
	string field5
)
Visual Basic (Declaration)
Public Sub New ( _
	employeeId As String, _
	timesheetPeriod As BusinessConstants..::.TimesheetPeriod, _
	payrollStartDate As DateTime, _
	joiningDate As DateTime, _
	leavingDate As DateTime, _
	payrollNotes As String, _
	field1 As String, _
	field2 As String, _
	field3 As String, _
	field4 As String, _
	field5 As String _
)
Visual C++
public:
UserPayrollInfo(
	String^ employeeId, 
	BusinessConstants..::.TimesheetPeriod timesheetPeriod, 
	DateTime payrollStartDate, 
	DateTime joiningDate, 
	DateTime leavingDate, 
	String^ payrollNotes, 
	String^ field1, 
	String^ field2, 
	String^ field3, 
	String^ field4, 
	String^ field5
)

Parameters

employeeId
Type: System..::.String
The unique id of the employee
timesheetPeriod
Type: OfficeClip.BusinessLayer..::.BusinessConstants..::.TimesheetPeriod
The timesheet period
payrollStartDate
Type: System..::.DateTime
The start date of the payroll. This date should match the date from when the member starts entering the timesheet. This is required to make sure that the biweekly timesheets begin with the correct week.
joiningDate
Type: System..::.DateTime
The joining date of the member
leavingDate
Type: System..::.DateTime
The leaving date of the member
payrollNotes
Type: System..::.String
The payroll notes
field1
Type: System..::.String
The user-defined field 1
field2
Type: System..::.String
The user-defined field 2
field3
Type: System..::.String
The user-defined field 3
field4
Type: System..::.String
The user-defined field 4
field5
Type: System..::.String
The user-defined field 5

See Also