// GET: Categoria/Details/5 public ActionResult Details(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } CategoriaModel categoriaModel = db.Devolver(id); if (categoriaModel == null) { return(HttpNotFound()); } return(View(categoriaModel)); }
// GET: SubCategoria/Create public ActionResult Create(int?Id) { //SI ARRASTRA POR GET UN CODIGO DE CATEGORIA, LO CARGA Y DESHABILITA EL COMBO DE CATEGORIA PARA CARGAR SOLO SUB CATEGORIA A ESA CATEGORIA if (Id.HasValue) { ViewBag.TieneCategoria = true; ViewBag.CategoriaId = new SelectList(new List <CategoriaModel>() { dc.Devolver(Convert.ToInt32(Id)) }, "Id", "Nombre"); } else { ViewBag.tieneCategoria = false; ViewBag.CategoriaId = new SelectList(dc.Listar(), "Id", "Nombre"); } return(View()); }