예제 #1
0
파일: Item.cs 프로젝트: gajdukov-anton/OOD
 public Item(string shortcut, string description, WorkWithUsersCommand command)
 {
     Shortcut    = shortcut;
     Description = description;
     Command     = command;
 }
예제 #2
0
파일: Menu.cs 프로젝트: gajdukov-anton/OOD
 public void AddItem(string shortcut, string description, WorkWithUsersCommand command)
 {
     _items.Add(new Item(shortcut, description, command));
 }