Exemplo n.º 1
0
 public SchemaCategory()
 {
     _schemas = new SchemaCollection();
 }
Exemplo n.º 2
0
 public SchemaCategory(string name, string title, string description, bool visible) : base(name, title, description, visible)
 {
     _schemas = new SchemaCollection();
 }
Exemplo n.º 3
0
 public SchemaCategory(string name) : base(name, name, string.Empty)
 {
     _schemas = new SchemaCollection();
 }