'Declaration
Public Function GetUserPositions( _ ByVal userID As Guid, _ ByVal startDate As Date, _ ByVal endDate As Date _ ) As List(Of User.UserPosition)
'Usage
Dim instance As DataAccess Dim userID As Guid Dim startDate As Date Dim endDate As Date Dim value As List(Of User.UserPosition) value = instance.GetUserPositions(userID, startDate, endDate)
Parameters
- userID
- The unique identifier of a User as a Guid.
- startDate
- The inclusive lower-bound of the date range.
Dates should be specified as Local or UTC by use of the System.DateTime.Kind property. Dates with the System.DateTime.Kind property not set (Unspecified) will be interpreted as UTC. - endDate
- The inclusive upper-bound of the date range.
Dates should be specified as Local or UTC by use of the System.DateTime.Kind property. Dates with the System.DateTime.Kind property not set (Unspecified) will be interpreted as UTC.
Return Value
An array of comprehensive UserPosition objects.