public ActionResult Edit([Bind(Include = "ID,Titulo,Autor,Genero,Descricao,Valor,Situation")] Livro.Model.Livro livro) { if (Session["AdminID"] != null) { if (ModelState.IsValid) { db.Entry(livro).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(livro)); } return(RedirectToAction("Index", "Home")); }
public void Alterar(Livro oLivro) { d.Entry(oLivro).State = System.Data.Entity.EntityState.Modified; d.SaveChanges(); }
public void Excluir(LivrosVendidos oLivros) { E.Entry(oLivros).State = System.Data.Entity.EntityState.Deleted; E.SaveChanges(); }
public void Excluir(Venda oVenda) { E.Entry(oVenda).State = System.Data.Entity.EntityState.Deleted; E.SaveChanges(); }
public void Alterar(Admin o) { _E.Entry(o).State = System.Data.Entity.EntityState.Modified; _E.SaveChanges(); }
public void Incluir(Cliente oCliente) { e.Entry(oCliente).State = System.Data.Entity.EntityState.Added; e.SaveChanges(); }