Ejemplo n.º 1
0
 public ConsolePlayer(HistoryPrinter historyPrinter, DeskHistoryManager historyManager, DeskSize deskSize, CommandManager commandManager)
 {
     this.historyPrinter = historyPrinter;
     this.historyManager = historyManager;
     this.deskSize       = deskSize;
     this.commandManager = commandManager;
 }
Ejemplo n.º 2
0
 public HistoryPrinter(DeskHistoryManager historyManager)
 {
     this.historyManager = historyManager;
 }
Ejemplo n.º 3
0
 public DeskPrinter(DeskManager desk, DeskHistoryManager historyManager)
 {
     this.desk           = desk;
     this.historyManager = historyManager;
 }
Ejemplo n.º 4
0
 public RulesManager(DeskManager desk, AllPositions allPositions, DeskHistoryManager historyManager)
 {
     this.desk           = desk;
     this.allPositions   = allPositions;
     this.historyManager = historyManager;
 }
Ejemplo n.º 5
0
 public void Dispose()
 {
     desk           = null;
     allPositions   = null;
     historyManager = null;
 }