|
IHourEntryGetHourEntriesByCaseGUID Method
|
Gets hour enties by case and time frame.
Namespace: Severa.APIAssembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+e98ed9fa86c8385bc0e531f978079d90e20e81a6
SyntaxList<HourEntry> GetHourEntriesByCaseGUID(
string caseGuid,
DateTime? startDate,
DateTime? endDate
)
Function GetHourEntriesByCaseGUID (
caseGuid As String,
startDate As DateTime?,
endDate As DateTime?
) As List(Of HourEntry)
Parameters
- caseGuid String
- Case GUID, identifies the case from which work hour entries are returned.
- startDate NullableDateTime
- Start date/time. When null, all entries that have been entered to dates before end date, are returned (Time information is ignored).
- endDate NullableDateTime
- End date/time. When null, all entries entered starting from start date are returned (Time information is ignored).
Return Value
ListHourEntryList of HourEntry objects. Returns null when caseGuid is null or an empty string.
Exceptions
RemarksIf start date and end date aren't given, returns all work hour entries entered to the case.
See Also