public static CotizacionesDetalles Buscar(int?detalleCotizacionId) { CotizacionesDetalles detalle = null; using (var conexion = new CotizacionDb()) { try { detalle = conexion.CotDetalle.Find(detalleCotizacionId); } catch (Exception) { throw; } } return(detalle); }
public static List <Cotizaciones> Listar() { List <Cotizaciones> listado = null; using (var conexion = new CotizacionDb()) { try { listado = conexion.Cotizacion.ToList(); } catch (Exception) { throw; } } return(listado); }
public static Cotizaciones Buscar(int?cotizacionId) { Cotizaciones cotizacion = null; using (var conexion = new CotizacionDb()) { try { cotizacion = conexion.Cotizacion.Find(cotizacionId); } catch (Exception) { throw; } } return(cotizacion); }
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); }