示例#1
0
 public TerminalUiService(
     IUIStartup uiStartup,
     IUIShutdown uiShutdown)
 {
     this.uiStartup  = uiStartup;
     this.uiShutdown = uiShutdown;
 }
示例#2
0
 public QuitMenuItem(
     IUIShutdown uiShutdown,
     IMessageBox messageBox) : base("quit", byte.MaxValue)
 {
     this.uiShutdown = uiShutdown;
     this.messageBox = messageBox;
 }