Class WorkerLogOnStatus
Status information about a worker log-on.
[DataContract]
public class WorkerLogOnStatus
- Inheritance
-
WorkerLogOnStatus
- Inherited Members
Constructors
WorkerLogOnStatus(int, Worker, DateTime, byte)
Initializes a new instance of the WorkerLogOnStatus class.
public WorkerLogOnStatus(int workerStationId, Worker worker, DateTime shiftDate, byte shiftNumber)
Parameters
workerStationIdintThe worker station identifier, for use in subsequent server calls.
workerWorkerThe worker.
shiftDateDateTimeThe shift date.
shiftNumberbyteThe shift number.
Exceptions
- ArgumentNullException
workeris null.
Properties
ShiftDate
Gets the shift date.
[DataMember]
public DateTime ShiftDate { get; }
Property Value
ShiftNumber
Gets the shift number.
[DataMember]
public byte ShiftNumber { get; }
Property Value
Worker
Gets the worker.
[DataMember(Order = 100)]
public Worker Worker { get; }
Property Value
WorkerStationId
Gets the worker station identifier, for use in subsequent server calls.
[DataMember]
public int WorkerStationId { get; }