public ActionResult Index()
        {
            var model = new ProdutoModel();

            model.CarregarProdutos();

            return(View(model));
        }