public void Configure(BarcodeConfig config)
        {
            var command = new BarcodeCommand();

            config.Configure(command);
            _commander.Execute(command);
        }
        public void GetBarcode(BarcodeConfig config)
        {
            var command = new BarcodeCommand();

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