示例#1
0
 public Item(string shortcut, string description, WorkWithUsersCommand command)
 {
     Shortcut    = shortcut;
     Description = description;
     Command     = command;
 }
示例#2
0
 public void AddItem(string shortcut, string description, WorkWithUsersCommand command)
 {
     _items.Add(new Item(shortcut, description, command));
 }