Table of Contents

Class UnitSelectorSeedData

Namespace
Acuit.Pinpoint.Workstation
Assembly
Acuit.Pinpoint.Workstation.Interfaces.dll

Initial seed data for unit selection, provided to the active IUnitSelector via StartSelectingUnit(UnitSelectorSeedData, IUnitSelectorHost).

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 due to a "linked lines" unit scan.

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.

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