/// <summary>
        /// Restituisce il DSN del database WetNet
        /// </summary>
        /// <returns>ODBC DSN del database WetNet</returns>
        public string GetWetDBDSN()
        {
            WetConfig cfg = new WetConfig();

            return cfg.GetWetDBDSN();
        }
 /// <summary>
 /// Caricamento del job
 /// </summary>
 protected override void Load()
 {
     WetConfig cfg = new WetConfig();
     wet_db = new WetDBConn(cfg.GetWetDBDSN(), null, null, true);
 }
 /// <summary>
 /// Varicamento del job
 /// </summary>
 protected override void Load()
 {
     // Istanzio la connessione al database wetnet
     WetConfig cfg = new WetConfig();
     wet_db = new WetDBConn(cfg.GetWetDBDSN(), null, null, true);
     config = cfg.GetWJ_Statistics_Config();
 }
 /// <summary>
 /// Caricamento del job
 /// </summary>
 protected override void Load()
 {
     // Istanzio la connessione al database wetnet
     WetConfig wcfg = new WetConfig();
     wet_db = new WetDBConn(wcfg.GetWetDBDSN(), null, null, true);
     cfg = wcfg.GetWJ_Events_Config();
 }