Class Employee
- Namespace
- Geotab.Checkmate.ObjectModel
- Assembly
- Geotab.Checkmate.ObjectModel.dll
The class representing an Employee.
public class Employee : Entity, IEntity, IComparable, IIdentifiable
- Inheritance
-
Employee
- Implements
- Inherited Members
Constructors
Employee()
public Employee()
Employee(Id?, string?, string?, string?)
public Employee(Id? id, string? firstName, string? lastName, string? identification)
Parameters
id
IdThe Id.
firstName
stringThe employee first name.
lastName
stringThe employee last name.
identification
stringThe employee identification.
Properties
FirstName
Gets or sets the Employee first name.
public string? FirstName { get; set; }
Property Value
Identification
Gets or sets the Employee identification reference.
public string? Identification { get; set; }
Property Value
LastName
Gets or sets the Employee last name.
public string? LastName { get; set; }
Property Value
Methods
Clone()
Creates a new object that is a copy of the current instance.
public override IEntity Clone()
Returns
- IEntity
A new object that is a copy of this instance.
ToString()
Returns a string that represents this instance.
public override string ToString()