Ejemplo n.º 1
0
        private void InitializeReader()
        {
            if (reader == null)
            {
                reader = new MBMEDevices.Readers.Artema();

                #if DEBUG
                    reader.InitAsync(Boolean.Parse(ConfigurationManager.AppSettings["SimulateReader"]));
                #else
                    reader.InitAsync(false);
                #endif
            }
        }