Esempio n. 1
0
 public WimEngine(
     ICommandHelper commandHelper,
     IWimCommandReader commandReader,
     IWimCommandProcessor commandProcessor,
     IWimProcessSingleCommander processSingleCommander,
     IWimReportsPrinter reportsPrinter,
     IConsoleWriter consoleWriter)
 {
     this.commandHelper    = commandHelper;
     this.commandReader    = commandReader;
     this.commandProcessor = commandProcessor;
     this.reportsPrinter   = reportsPrinter;
     this.consoleWriter    = consoleWriter;
 }
 public WimCommandProcessor(IWimProcessSingleCommander processSingleCommander)
 {
     this.processSingleCommander = processSingleCommander;
 }