// GET: Categorias public ActionResult Index() { CategoriasBLL oBLL = new CategoriasBLL(); List <categoria> categorias = oBLL.RetrieveAll(); return(View(categorias)); }