Table of Contents

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()

Initializes a new instance of the Employee class.Initializes a new instance of the Employee class.

public Employee()

Employee(Id?, string?, string?, string?)

Initializes a new instance of the Employee class.Initializes a new instance of the Employee class.

public Employee(Id? id, string? firstName, string? lastName, string? identification)

Parameters

id Id

The Id.

firstName string

The employee first name.

lastName string

The employee last name.

identification string

The employee identification.

Properties

FirstName

Gets or sets the Employee first name.

public string? FirstName { get; set; }

Property Value

string

The Employee first name.

Identification

Gets or sets the Employee identification reference.

public string? Identification { get; set; }

Property Value

string

The Employee identification reference.

LastName

Gets or sets the Employee last name.

public string? LastName { get; set; }

Property Value

string

The Employee last name.

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()

Returns

string

A string that represents this instance.