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

Returns DataSet of the expenses between specified date range for an userId

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

Syntax

C#
public List<ReimbursementPaymentInfo> GetExpsBetweenDateRange(
	int userId,
	DateTime from_date,
	DateTime to_date
)
Visual Basic (Declaration)
Public Function GetExpsBetweenDateRange ( _
	userId As Integer, _
	from_date As DateTime, _
	to_date As DateTime _
) As List(Of ReimbursementPaymentInfo)
Visual C++
public:
List<ReimbursementPaymentInfo^>^ GetExpsBetweenDateRange(
	int userId, 
	DateTime from_date, 
	DateTime to_date
)

Parameters

userId
Type: System..::.Int32
userId as int
from_date
Type: System..::.DateTime
from_date as DateTime
to_date
Type: System..::.DateTime
to_date as DateTime

Return Value

See Also