public async Task<IActionResult> Get([FromRoute] int coverId) { var limit = await _coverService.GetByIdAsync(coverId); if (limit == null) return NoContent(); return Ok(_mapper.Map<CoverResponse>(limit)); }