Class AuthorizedWorker
- Namespace
- Acuit.Pinpoint.Workstation
- Assembly
- Acuit.Pinpoint.Workstation.Interfaces.dll
Information about a worker that was authorized for a permission.
public class AuthorizedWorker
- Inheritance
-
AuthorizedWorker
- Inherited Members
Constructors
AuthorizedWorker(Worker)
Initializes a new instance of the AuthorizedWorker class.
public AuthorizedWorker(Worker worker)
Parameters
Exceptions
- ArgumentNullException
worker
is null.
AuthorizedWorker(int, string, string, string)
Initializes a new instance of the AuthorizedWorker class.
public AuthorizedWorker(int workerId, string badgeNumber, string firstName, string lastName)
Parameters
workerId
intThe worker identification number.
badgeNumber
stringThe badge number.
firstName
stringThe first name.
lastName
stringThe last name.
Properties
BadgeNumber
Gets the badge number.
public string BadgeNumber { get; }
Property Value
FirstName
Gets the first name.
public string FirstName { get; }
Property Value
LastName
Gets the last name.
public string LastName { get; }
Property Value
WorkerId
Gets the worker identification number.
public int WorkerId { get; }