Table of Contents

Class UnitSelectorSeedData

Namespace
Acuit.Pinpoint.Workstation
Assembly
Acuit.Pinpoint.Workstation.Abstractions.dll

Initial seed data for unit selection.

public class UnitSelectorSeedData
Inheritance
UnitSelectorSeedData
Inherited Members

Remarks

Some examples of when this data could exist include:

  • While a unit was at a station, a new unit bar code was scanned, causing the previous unit to be released and initiating the new unit selection.
  • A line switch occurred because the station type is configured to work with linked lines and a unit scan triggered the station to switch to a linked line.

The individual seed values are optional and will be null or empty if they do not exist. When provided, either SerialNumber or BarCode will exist, but never both.

Constructors

UnitSelectorSeedData()

public UnitSelectorSeedData()

Properties

BarCode

Gets or sets an optional seed bar code.

public string? BarCode { get; set; }

Property Value

string

SerialNumber

Gets or sets an optional seed unit serial number.

public string? SerialNumber { get; set; }

Property Value

string