Esempio n. 1
0
 public ConfigData()
 {
     this.database             = new ConfigDBData();
     this.gateway              = new ConfigIAGWData();
     this.specialWeatherReport = new ConfigSWRData();
     this.localSetting         = new ConfigLocalSettingData();
 }
Esempio n. 2
0
        public void DeepCopyFrom(ConfigDBData src)
        {
            System.Diagnostics.Debug.Assert(src != null);

            if (src == null)
            {
                return;
            }

            this.hostIP       = src.hostIP;
            this.userID       = src.userID;
            this.userPassword = src.userPassword;
            this.serviceID    = src.serviceID;
        }