Exemple #1
0
 public Param(string name, Dictionary<string, string> store, string key)
 {
     this.AssignType = ParamAssignType.Value;
     this.NameInternal = name;
     this.Store = store;
     this.Key = key;
 }
Exemple #2
0
 public Param(string name, Dictionary<string, string> store, string key, ParamMap map)
 {
     this.AssignType = ParamAssignType.Map;
     this.NameInternal = name;
     this.Store = store;
     this.Key = key;
     this.Map = map;
 }
Exemple #3
0
 public Param(string name, List<ParamRelation> relations)
 {
     this.AssignType = ParamAssignType.Relation;
     this.NameInternal = name;
     this.Relations = relations;
 }