public ActionResult DeleteConfirmed(int id) { CotizacionesDetalles cotizacionesDetalles = db.CotDetalle.Find(id); db.CotDetalle.Remove(cotizacionesDetalles); db.SaveChanges(); return(RedirectToAction("Index")); }
public static bool Eliminar(CotizacionesDetalles detalle) { bool resultado = false; using (var conexion = new CotizacionDb()) { try { conexion.Entry(detalle).State = EntityState.Deleted; conexion.SaveChanges(); resultado = true; } catch (Exception) { throw; } } return(resultado); }
public static bool Guardar(CotizacionesDetalles detalle) { bool resultado = false; using (var conexion = new CotizacionDb()) { try { conexion.CotDetalle.Add(detalle); conexion.SaveChanges(); resultado = true; } catch (Exception) { throw; } } return(resultado); }
public static bool Modificar(Cotizaciones cotizacion) { bool resultado = false; using (var conexion = new CotizacionDb()) { try { conexion.Entry(cotizacion).State = EntityState.Modified; conexion.SaveChanges(); resultado = true; } catch (Exception) { throw; } } return(resultado); }