|
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+5e6f58e3edb88d6a1b6bcd1fb5c50970e5924e19
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