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

Return the month start dates in the datatable

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

Syntax

C#
protected static DataTable GetMonthStartDates(
	DateTime selDate,
	DateTime payrollStartDate,
	int numPeriodForward,
	int numPeriodBackward
)
Visual Basic (Declaration)
Protected Shared Function GetMonthStartDates ( _
	selDate As DateTime, _
	payrollStartDate As DateTime, _
	numPeriodForward As Integer, _
	numPeriodBackward As Integer _
) As DataTable
Visual C++
protected:
static DataTable^ GetMonthStartDates(
	DateTime selDate, 
	DateTime payrollStartDate, 
	int numPeriodForward, 
	int numPeriodBackward
)

Parameters

selDate
Type: System..::.DateTime
The reference date, usually it is the current date
payrollStartDate
Type: System..::.DateTime
the date when the payroll starts
numPeriodForward
Type: System..::.Int32
numPeriodBackward
Type: System..::.Int32

Return Value

The datatable containing the dates

See Also