Exemplo n.º 1
0
 private void SaveValueInDatabase()
 {
     try
     {
         channel.AddNewHistoricalData(this.Id, this.Value);
     }
     catch (System.Exception ex)
     {
         logger.LogException(LogLevel.Info, string.Format("MonitoringAIOServer.SaveValueInDatabase.{0}", this.Id), ex);
         return;
     }
 }