public CONTROL ConsultarControl(int idControl) { CONTROL resultado = new CONTROL(); try { using (var model = new Model.conexion()) { resultado = model.CONTROL.Where(x => x.IDCONTROL == idControl).FirstOrDefault(); } } catch (Exception) { throw; } return(resultado); }
public bool RegistrarControl(CONTROL control) { bool resultado = false; try { using (var model = new Model.conexion()) { model.CONTROL.Add(control); model.SaveChanges(); resultado = true; } } catch (Exception) { throw; } return(resultado); }
public bool EliminarControl(CONTROL control) { bool resultado = false; try { using (var model = new Model.conexion()) { var Control = model.CONTROL.Single(o => o.IDCONTROL == control.IDCONTROL); model.CONTROL.Remove(Control); model.SaveChanges(); resultado = true; } } catch (Exception ex) { throw; } return(resultado); }