Example #1
0
        public ActionResult DeleteConfirmed(int id)
        {
            CotizacionesDetalles cotizacionesDetalles = db.CotDetalle.Find(id);

            db.CotDetalle.Remove(cotizacionesDetalles);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
Example #2
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 #3
0
        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);
        }
Example #4
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);
        }