internal QuitCommand(IInterfaceWriter writer) : base(true, writer)
 {
 }
 public CommandFactory(IInterfaceWriter writer)
 {
     this.writer = writer;
 }
 internal HelpCommand(IInterfaceWriter writer) : base(false, writer)
 {
 }
Exemplo n.º 4
0
 public Command(bool quitable, IInterfaceWriter writer)
 {
     this.quitable = quitable;
     this.writer   = writer;
 }