public GetPlayerGamesQueryHandler(ITicTacToeDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public CheckAndUpdateGameWinConditionsCommandHandler(ITicTacToeDbContext context)
 {
     this.context = context;
 }
Exemplo n.º 3
0
 public CreateCrossPlayerGameTileCommandHandler(ITicTacToeDbContext context)
 {
     this.context = context;
 }
Exemplo n.º 4
0
 public GetGameTilesQueryHandler(ITicTacToeDbContext context, IMapper mapper, ICurrentUserService currentUserService)
 {
     this.context            = context;
     this.mapper             = mapper;
     this.currentUserService = currentUserService;
 }
Exemplo n.º 5
0
 public CreateGameCommandHandler(ITicTacToeDbContext context, ICurrentUserService currentUserService, IDateTime dateTime)
 {
     this.context            = context;
     this.currentUserService = currentUserService;
     this.dateTime           = dateTime;
 }