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); }
public DataCommandDescriptionAttribute(string name, string title) { this.Name = name; this.Title = title; this.dataCommandDescription = new DataCommandDescription(this.Name, this.Title); }