public GetPlayerGamesQueryHandler(ITicTacToeDbContext context, IMapper mapper) { this.context = context; this.mapper = mapper; }
public CheckAndUpdateGameWinConditionsCommandHandler(ITicTacToeDbContext context) { this.context = context; }
public CreateCrossPlayerGameTileCommandHandler(ITicTacToeDbContext context) { this.context = context; }
public GetGameTilesQueryHandler(ITicTacToeDbContext context, IMapper mapper, ICurrentUserService currentUserService) { this.context = context; this.mapper = mapper; this.currentUserService = currentUserService; }
public CreateGameCommandHandler(ITicTacToeDbContext context, ICurrentUserService currentUserService, IDateTime dateTime) { this.context = context; this.currentUserService = currentUserService; this.dateTime = dateTime; }