public bool Eliminar(int id) { try { var usuario = _contexto.Usuario.FirstOrDefault(u => u.IdUsu == id); if (usuario != null) { _contexto.Remove(usuario); _contexto.SaveChanges(); return(true); } return(false); } catch (Exception) { return(false); } }
public bool Eliminar(int id) { try { var area = _contexto.Area.FirstOrDefault(a => a.IdAre == id); if (area != null) { _contexto.Remove(area); _contexto.SaveChanges(); return(true); } return(false); } catch (Exception) { return(false); } }
public bool Eliminar(int id) { try { var empresa = _contexto.Empresa.FirstOrDefault(e => e.IdEmp == id); if (empresa != null) { _contexto.Remove(empresa); _contexto.SaveChanges(); return(true); } return(false); } catch (Exception) { return(false); } }
public bool Eliminar(int id) { try { var cargo = _contexto.Cargo.FirstOrDefault(c => c.IdCar == id); if (cargo != null) { _contexto.Remove(cargo); _contexto.SaveChanges(); return(true); } return(false); } catch (Exception) { return(false); } }
public bool Eliminar(int id) { try { var tipoUsuario = _contexto.TipoUsuario.FirstOrDefault(t => t.IdTip == id); if (tipoUsuario != null) { _contexto.Remove(tipoUsuario); _contexto.SaveChanges(); return(true); } return(false); } catch (Exception) { return(false); } }
public bool Eliminar(int id) { try { var personal = _contexto.Personal.FirstOrDefault(p => p.IdPer == id); if (personal != null) { _contexto.Remove(personal); _contexto.SaveChanges(); return(true); } return(false); } catch (Exception) { return(false); } }