public async Task <IActionResult> GetAllByPlayerId(int playerId)
        {
            var result = await _statManager.GetAllByPlayerIdAsync(playerId);

            return(Ok(new ApiResponse(_localizationService, _logger).Ok(
                          _mapper.Map <IList <Stat>, IList <StatResponse> >(result.EntityList), result.Count)));
        }