public EMPRESA traeEmpresa(int id) { EMPRESA empresa = new EMPRESA(); try { using (var context = new SIGHUContext()) { empresa = (from e in context.EMPRESA where e.IdEmpresa == id select e).FirstOrDefault(); } } catch (Exception ex) { throw new Exception(ex.Message); } return(empresa); }
public void desEmpresa(int id) { EMPRESA empresa = new EMPRESA(); try { using (var context = new SIGHUContext()) { empresa = (from e in context.EMPRESA where e.IdEmpresa == id select e).FirstOrDefault(); empresa.Activo = 0; context.SaveChanges(); } } catch (Exception ex) { throw new Exception(ex.Message); } }