コード例 #1
0
 public FluentConsoleApplication(IRunnableCommand runnableCommand)
     : this(runnableCommand.DefinedCommand.Application, runnableCommand)
 {
 }
コード例 #2
0
 public FluentConsoleApplication(IFluentConsoleApplication application, IRunnableCommand command)
     : this(application.Name, application.Description)
 {
     RunnableCommands = application.RunnableCommands.Concat(new[] { command });
 }