IScheduleApiGetSchedules Method |
Gets schedules for given employees in given time range.
Namespace: AMG.APIAssembly: AMG.API (in AMG.API.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax EmployeeSchedule[] GetSchedules(
int[] employeeIds,
DateTime start,
DateTime end
)
Function GetSchedules (
employeeIds As Integer(),
start As DateTime,
end As DateTime
) As EmployeeSchedule()
array<EmployeeSchedule^>^ GetSchedules(
array<int>^ employeeIds,
DateTime start,
DateTime end
)
abstract GetSchedules :
employeeIds : int[] *
start : DateTime *
end : DateTime -> EmployeeSchedule[]
Parameters
- employeeIds
- Type: SystemInt32
Employee IDs - start
- Type: SystemDateTime
Inclusive start date/time to filter out schedules. - end
- Type: SystemDateTime
Inclusive end date/time to filter out schedules.
Return Value
Type:
EmployeeScheduleReturns array of filtered schedules.
See Also