Пример #1
0
 public SolutionGameCommand(IUserSessionService userSessionService, ISudokuGridSolver sudokuGridSolver, IInterfaceService interfaceService, IReaderService readerService, IWriterService writerService, IUserService userService, IGameSetUpFasade gameSetUpFasade)
 {
     this.userSessionService = userSessionService;
     this.sudokuGridSolver   = sudokuGridSolver;
     this.interfaceService   = interfaceService;
     this.readerService      = readerService;
     this.writerService      = writerService;
     this.userService        = userService;
     this.gameSetUpFasade    = gameSetUpFasade;
 }
Пример #2
0
 public GameCommand(IGameSetUpFasade gameSetUp, IGamePlayFasade gamePlay, IRandomPatternReadFasade randomPatternReadFasade)
 {
     this.gameSetUp = gameSetUp;
     this.gamePlay  = gamePlay;
     this.randomPatternReadFasade = randomPatternReadFasade;
 }