public int Insertar(ASIENTO P) { try { return new DatAsiento().Insertar(P); } catch (Exception ex) { throw ex; } }
public void Actualizar(ASIENTO P) { try { new DatAsiento().Actualizar(P); } catch (Exception ex) { throw ex; } }
public int Insertar(ASIENTO P) { try { ContextoDB ct = new ContextoDB(); ct.ASIENTO.Add(P); ct.SaveChanges(); return P.CASiento; } catch (Exception ex) { throw ex; } }
public void Actualizar(ASIENTO P) { try { ContextoDB ct = new ContextoDB(); ASIENTO ASIENTO = ct.ASIENTO.Where(x => x.CASiento == P.CASiento).SingleOrDefault(); if (ASIENTO != null) { ct.Entry(ASIENTO).CurrentValues.SetValues(P); ct.SaveChanges(); } } catch (Exception ex) { throw ex; } }
public void setbtnAsiento(ASIENTO obj) { this.btnAsiento = obj; }
public AsientoButton(ASIENTO obj) { this.btnAsiento = obj; }