public static void Modificar(TiposTelefonos TiposTelefono) { var db = new Parcial2Db(); db.Entry(TiposTelefono).State = EntityState.Modified; db.SaveChanges(); }
public static void Modificar(Clientes cliente) { var db = new Parcial2Db(); db.Entry(cliente).State = EntityState.Modified; db.SaveChanges(); }
public static void Modificar(TiposTelefonos telefono) { var db = new Parcial2Db(); db.Entry(telefono).State = EntityState.Modified; db.SaveChanges(); Lista = TiposTelefonosBLL.GetLista(); Lista = GetLista(); }
public static void Eliminar(int TipoId) { var db = new Parcial2Db(); TiposTelefonos telefono = Buscar(TipoId); db.Entry(telefono).State = EntityState.Deleted; db.SaveChanges(); }
public static void Eliminar(int clienteId) { var db = new Parcial2Db(); Clientes cliente = Buscar(clienteId); db.Entry(cliente).State = EntityState.Deleted; db.SaveChanges(); }
public static bool Eliminar(int ID) { bool retorno = false; var db = new Parcial2Db(); Clientes cliente = Buscar(ID); if (cliente != null) { db.Entry(cliente).State = EntityState.Deleted; db.SaveChanges(); retorno = true; } return(retorno); }
public static bool Eliminar(Clientes cliente) { bool resultado = false; using (var conexion = new Parcial2Db()) { try { conexion.Entry(cliente).State = EntityState.Deleted; conexion.SaveChanges(); resultado = true; } catch (Exception e) { MessageBox.Show(e.ToString()); throw; } } return(resultado); }
public static bool Guardar(Empleados emp) { using (var conexion = new Parcial2Db()) { try { conexion.Empleados.Add(emp); foreach (var p in emp.Retenciones) { conexion.Entry(p).State = System.Data.Entity.EntityState.Unchanged; } conexion.SaveChanges(); return(true); } catch (Exception) { throw; } } return(false); }
public static bool Guardar(TiposTelefonos t) { bool retorno = false; try { Parcial2Db db = new Parcial2Db(); db.TipoTelefono.Add(t); foreach (var c in t.Clientes) { db.Entry(c).State = System.Data.Entity.EntityState.Unchanged; } db.SaveChanges(); retorno = true; } catch (Exception) { throw; } return(retorno); }