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(ConfigSWRData src)
        {
            System.Diagnostics.Debug.Assert(src != null);

            if (src == null)
            {
                return;
            }

            this.useService      = src.useService;
            this.serviceKey      = src.serviceKey;
            this.cycleTimeMinute = src.cycleTimeMinute;
        }