Assigns a shift to an employee.
Namespace:
ASAP.NRP.Core
Assembly:
NRP (in NRP.dll) Version: 3.49.0+539d3dcf73518163e952c8abb92256bf56ba5029
Syntaxpublic void AssignShift(
string EmployeeID,
string ShiftID,
int Day
)
Public Sub AssignShift (
EmployeeID As String,
ShiftID As String,
Day As Integer
)
public:
void AssignShift(
String^ EmployeeID,
String^ ShiftID,
int Day
)
member AssignShift :
EmployeeID : string *
ShiftID : string *
Day : int -> unit
Parameters
- EmployeeID
- Type: SystemString
The ID of the employee to assign the shift to. - ShiftID
- Type: SystemString
The ID of the shift type to assign. - Day
- Type: SystemInt32
The day in the scheduling period to assign the shift on
(the first day in the roster is day zero).
See Also