Ejemplo n.º 1
0
 public void Remove(Categoria c)
 {
     this.contexto.Categorias.Remove(c);
     this.contexto.SaveChanges();
 }
Ejemplo n.º 2
0
 public void Adiciona(Categoria c)
 {
     this.contexto.Categorias.Add(c);
     this.contexto.SaveChanges();
 }