Esempio n. 1
0
 protected ConfigurationVariable()
 {
     Father                   = new EmptyFather();
     Variables                = new ObservableCollection <ConfigurationVariable>();
     Dirty                    = true;
     IsComposite              = true;
     is_explicit              = false;
     ConfigurationName        = "";
     IsExplicitnessChangeable = true;
 }
Esempio n. 2
0
 protected ConfigurationVariable(ConfigurationVariable other, Changable father = null)
 {
     if (father == null)
     {
         Father = new EmptyFather();
     }
     else
     {
         Father = father;
     }
     UpdateBy(other);
 }