Example #1
0
        public ActionResult DeleteConfirmed(int id)
        {
            ProductosGS productosGS = db.ProductosGS.Find(id);

            db.ProductosGS.Remove(productosGS);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
Example #2
0
 public ActionResult Edit([Bind(Include = "ID_Productos,Nom_Producto,Tipo_Producto,Cantidad_Producto,CostoU_Producto,Suplidor_P,IdCategoria,IdSubCategoria")] ProductosGS productosGS)
 {
     if (ModelState.IsValid)
     {
         db.Entry(productosGS).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     ViewBag.IdCategoria    = new SelectList(db.CategoriaGS, "Id_Categoria", "Nombre", productosGS.IdCategoria);
     ViewBag.IdSubCategoria = new SelectList(db.SubCategoriaGS, "Id_SubCategoria", "NombreSubcategoria", productosGS.IdSubCategoria);
     ViewBag.Suplidor_P     = new SelectList(db.SuplidoresGS, "ID_Suplidor", "Nom_Suplidor", productosGS.Suplidor_P);
     return(View(productosGS));
 }
Example #3
0
        // GET: ProductosGS/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            ProductosGS productosGS = db.ProductosGS.Find(id);

            if (productosGS == null)
            {
                return(HttpNotFound());
            }
            return(View(productosGS));
        }
Example #4
0
        // GET: ProductosGS/Edit/5
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            ProductosGS productosGS = db.ProductosGS.Find(id);

            if (productosGS == null)
            {
                return(HttpNotFound());
            }
            ViewBag.IdCategoria    = new SelectList(db.CategoriaGS, "Id_Categoria", "Nombre", productosGS.IdCategoria);
            ViewBag.IdSubCategoria = new SelectList(db.SubCategoriaGS, "Id_SubCategoria", "NombreSubcategoria", productosGS.IdSubCategoria);
            ViewBag.Suplidor_P     = new SelectList(db.SuplidoresGS, "ID_Suplidor", "Nom_Suplidor", productosGS.Suplidor_P);
            return(View(productosGS));
        }