public async Task <IActionResult> GetBy(int id)
        {
            var entity = await _servicioService.GetBy(id);

            return(Ok(entity));
        }