public IActionResult GetMidia(string id)
        {
            try
            {
                var retorno = ItemAppService.ObterMidia(id);

                if (retorno != null)
                {
                    return(Ok(retorno));
                }
                else
                {
                    return(NotFound());
                }
            }
            catch (Exception ex)
            {
                return(BadRequest(ex.Message));
            }
        }