Beispiel #1
0
        public ActionResult Details(int id)
        {
            CategoriasBLL oBLL = new CategoriasBLL();
            categoria     cate = oBLL.Retrieve(id);

            return(View(cate));
        }
Beispiel #2
0
        public ActionResult Edit(int id)
        {
            CategoriasBLL oBLL      = new CategoriasBLL();
            categoria     categoria = oBLL.Retrieve(id);

            return(View(categoria));
        }