Exemplo n.º 1
0
 private Command()
 {
     this.RegularArguments = new List<Argument>();
     this.ExtensibleSetArguments = new List<List<Argument>>();
     this.idd = IDDDataModel.GetInstance();
     this.IsMuted = false;
 }
Exemplo n.º 2
0
 public Argument(Field field, string Value)
 {
     this.Field = field;
     this.Value = Value;
     idd = IDDDataModel.GetInstance();
 }