Exemple #1
0
 public Functionality(Functionality parent, string code, string name, bool showInDashboard, params RightType[] types)
     : this(code, name, showInDashboard)
 {
     this.Parent = parent;
     this.RightTypes.AddRange(types);
 }
Exemple #2
0
 public Functionality(Functionality parent, string code, string name, bool showInDashboard)
     : this(code, name, showInDashboard)
 {
     this.Parent = parent;
 }