예제 #1
0
        public ActionResult Create([Bind(Include = "IdProducto,descripcion_producto,condiciones_uso,IdCategoria,IdBrand,precio_producto,Imagen,Lote")] Producto producto)
        {
            if (ModelState.IsValid)
            {
                db.Productoes.Add(producto);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            ViewBag.IdBrand     = new SelectList(db.Brands, "IdBrand", "Descripcion_brand", producto.IdBrand);
            ViewBag.IdCategoria = new SelectList(db.Categorias, "IdCategoria", "descripcion_categoria", producto.IdCategoria);
            return(View(producto));
        }
예제 #2
0
 public void Add(Tbl_Entity entity)
 {
     _dbSet.Add(entity);
     _DBEntity.SaveChanges();
 }
예제 #3
0
 public void SaveChanges()
 {
     DBEntity.SaveChanges();
 }