public ActionResult CadastrarConfirma(Venda venda)
        {
            var response = _appVenda.Post(venda);

            if (response.Status != HttpStatusCode.OK)
            {
                return(Error(response.ContentAsString));
            }

            return(Content(response.Content));
        }