public ActionResult <Carrinho> PutAddEndereco(string userId, string enderecoId)
        {
            var carrinho = _carrinhoRepository.AddEndereco(userId, enderecoId);

            if (carrinho == null)
            {
                return(NotFound());
            }

            return(carrinho);
        }