Exemplo n.º 1
0
 public DataCommandDescriptionAttribute(string name, string title, string group, string image)
 {
     this.Name  = name;
     this.Title = title;
     this.Group = group;
     this.Image = image;
     this.dataCommandDescription = new DataCommandDescription(this.Name, this.Title, this.Group, this.Image);
 }
Exemplo n.º 2
0
 public DataCommandDescriptionAttribute(string name, string title)
 {
     this.Name  = name;
     this.Title = title;
     this.dataCommandDescription = new DataCommandDescription(this.Name, this.Title);
 }