コード例 #1
0
        public void Configure(BarcodeConfig config)
        {
            var command = new BarcodeCommand();

            config.Configure(command);
            _commander.Execute(command);
        }
コード例 #2
0
        public void GetBarcode(BarcodeConfig config)
        {
            var command = new BarcodeCommand();

            config.Configure(command);
            command.TakeNoAction = false;
            _barcodeMonitor.OnBarcodeReceived(command);
            _commander.Execute(command);
        }