コード例 #1
0
 public CommandExecutor(TicketCatalog ticketCatalog)
 {
     this.ticketCatalog = ticketCatalog;
 }
コード例 #2
0
 public TicketCatalogEngine(TicketCatalog ticketCatalog, IUserInterface userInterface)
 {
     this.ticketCatalog = ticketCatalog;
     this.userInterface = userInterface;
     this.commandExecutor = new CommandExecutor(this.ticketCatalog);
 }