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

            if (src == null)
            {
                return;
            }

            this.regionCode = src.regionCode;
            this.senderID   = src.senderID;
            this.senderName = src.senderName;
        }