private void GetActiveS7Connections()
        {
            //reading list of active connections from DB
            PLCconnectionReader reader = new PLCconnectionReader(_realmProvider);

            _activeS7Connections = reader.GetActivatedS7Connections();
            _plcConnectionOK     = new List <bool>();
        }
        private void GetS7Connections()
        {
            _logger.Info($"Reading all S7 connections.");

            PLCconnectionReader reader = new PLCconnectionReader(_realmProvider);

            _originalListOfS7connections = reader.GetAllS7Connections();
        }
Exemple #3
0
        private List <S7PlcConnectionDefinition> ReadDataFromDB()
        {
            PLCconnectionReader reader = new PLCconnectionReader(_realmProvider);

            return(reader.GetAllS7Connections());
        }