Пример #1
0
 public void Remove(Categoria c)
 {
     this.contexto.Categorias.Remove(c);
     this.contexto.SaveChanges();
 }
Пример #2
0
 public void Adiciona(Categoria c)
 {
     this.contexto.Categorias.Add(c);
     this.contexto.SaveChanges();
 }