public void Remove(Categoria c) { this.contexto.Categorias.Remove(c); this.contexto.SaveChanges(); }
public void Adiciona(Categoria c) { this.contexto.Categorias.Add(c); this.contexto.SaveChanges(); }