コード例 #1
0
        // GET: Produto
        //public ActionResult Index()
        //{
        //    return View();
        //}

        public ActionResult Detalhes(int id)
        {
            ProdutoBusiness business = new ProdutoBusiness();
            Produto         model    = business.ObterProduto(id);

            return(View(model));
        }