Пример #1
0
 public Pacote RemoverEstoque(Pacote item)
 {
     item.retirar();
     contexto.Entry(item).State = System.Data.Entity.EntityState.Modified;
     contexto.SaveChanges();
     return(item);
 }