Ejemplo n.º 1
0
        public async Task <IActionResult> GetById(int id)
        {
            var result = await _statManager.GetByIdAsync(id);

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