public Module(string _Id, string _Name, Module _Parent) { this.Id = _Id; this.Name = _Name; this.Parent = _Parent; }
public Function(string _Id, string _Name, Module _Module) { this.Id = _Id; this.Name = _Name; this.Module = _Module; }