Exemplo n.º 1
0
        private void ScanStationCreatedHandler(object sender, ApiCreationEventArg e)
        {
            _scanStation = e.ScanStation;

            if (_scanStation != null)
            {
                _scanStation.BarcodeProveRequestEvent += BarcodeSanityCheckHandler;
                _scanStation.BarcodeReceivedEvent     += BarcodeReceivedHandler;
            }
        }
Exemplo n.º 2
0
 public ApiCreationEventArg(IScanStation scanStation)
 {
     ScanStation = scanStation;
 }