public string ExcluirCarrinho(Carrinho carrinho)
        {
            var error = "";

            try
            {
                CarrinhoRepository.Excluir(carrinho);
                CarrinhoRepository.Salvar();
            }
            catch (Exception ex)
            {
                error = ex.Message;
            }

            return(error);
        }