Example #1
0
        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);
        }
Example #2
0
        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);
        }