Table of Contents

Class WorkflowCheckResult

Namespace
Acuit.Pinpoint.Services.Entities
Assembly
Acuit.Pinpoint.Services.Entities.dll

A unit workflow check result.

[DataContract]
public class WorkflowCheckResult
Inheritance
WorkflowCheckResult
Inherited Members

Constructors

WorkflowCheckResult(Unit)

Initializes a new instance of the WorkflowCheckResult class.

public WorkflowCheckResult(Unit unit)

Parameters

unit Unit

The unit.

Properties

Unit

Gets the unit, with only basic information set.

[DataMember]
public Unit Unit { get; }

Property Value

Unit

Remarks

Only the primitive properties will be initialized; navigation properties will not be set. For example, this allows the caller to verify that the unit model number is as expected.

WorkflowErrors

Gets the list of unit workflow errors. If the list is empty, then no problems were found.

public IList<WorkflowError> WorkflowErrors { get; }

Property Value

IList<WorkflowError>