public void ExcluirSistema(int sistema_id) { RepSistema rep = new RepSistema(); if (rep.FindById(sistema_id) != null) { rep.Delete(sistema_id); } }
public void AtualizarSistema(Sistema s) { RepSistema rep = new RepSistema(); if (rep.FindById(s.IdSistema) != null) { rep.UpdateAll(s); } }