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

            if (src == null)
            {
                return;
            }

            this.authenticationCode = src.authenticationCode;
            this.serverIP           = src.serverIP;
            this.serverPort         = src.serverPort;
            this.UseAutoConnection  = src.useAutoConnection;
        }