|
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+9acb7434aeb2855fb928fe129dfe34575a6d8fd4
Syntax List<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 Remarks If start date and end date aren't given, returns all work hour entries entered to the case.
See Also