Пример #1
0
 public Module(string _Id, string _Name, Module _Parent)
 {
     this.Id = _Id;
     this.Name = _Name;
     this.Parent = _Parent;
 }
Пример #2
0
 public Function(string _Id, string _Name, Module _Module) {
     this.Id = _Id;
     this.Name = _Name;
     this.Module = _Module;
 }