public void Actualizar(EVENTO P) { try { new DatEvento().Actualizar(P); } catch (Exception ex) { throw ex; } }
public int Insertar(EVENTO P) { try { return new DatEvento().Insertar(P); } catch (Exception ex) { throw ex; } }
public int Insertar(EVENTO P) { try { ContextoDB ct = new ContextoDB(); ct.EVENTO.Add(P); ct.SaveChanges(); return P.CEvento; } catch (Exception ex) { throw ex; } }
public void Actualizar(EVENTO P) { try { ContextoDB ct = new ContextoDB(); EVENTO EVENTO = ct.EVENTO.Where(x => x.CEvento == P.CEvento).SingleOrDefault(); if (EVENTO != null) { ct.Entry(EVENTO).CurrentValues.SetValues(P); ct.SaveChanges(); } } catch (Exception ex) { throw ex; } }