コード例 #1
0
        public override bool Insertar()
        {
            DbConexion conexion = new DbConexion();
            int        retorno  = 0;

            try
            {
                conexion.ObtenerValor(String.Format("INSERT INTO Materiales (Descripcion, Precio) VALUES ('{0}',{1})", this.Descripcion, this.Precio));
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(retorno > 0);
        }
コード例 #2
0
        public override bool Insertar()
        {
            DbConexion cone    = new DbConexion();
            int        retorno = 0;
            object     Identity;

            try
            {
                Identity = cone.ObtenerValor(string.Format("INSERT INTO Solicitudes (Fecha, Razon,Total) VALUES ('{0}','{1}',{2}) SELECT @@Identity", this.Fecha, this.Razon, this.Total));
                int.TryParse(Identity.ToString(), out retorno);
                if (retorno > 0)
                {
                    foreach (SolicitudesDetalle item in this.Detalle)
                    {
                        cone.Ejecutar(string.Format("Insert Into SolicitudesDetalle(IdSolicitud,Cantidad,Precio) VALUES ({0},{1},{2})", retorno, retorno, item.Cantidad, item.Precio));
                    }
                }
                return(retorno > 0);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
コード例 #3
0
        public override bool Insertar()
        {
            int        Retornar = 0;
            object     Identity = null;
            DbConexion cone     = new DbConexion();

            try
            {
                Identity = cone.ObtenerValor(String.Format("Insert into Ventas(Fecha,Monto) Values('{0}',{1}) SELECT @@Identity", this.Fecha, this.Monto));
                int.TryParse(Identity.ToString(), out Retornar);

                if (Retornar > 0)
                {
                    foreach (VentasDetalle item in this.Detalle)
                    {
                        cone.Ejecutar(String.Format("Insert into VentasDetalle(VentaId,ArticuloId,Cantidad,Precio) Values({0},{1},{2},{3})", Retornar, item.ArticuloId, item.Cantidad, item.Precio));
                    }
                }
            }catch (Exception ex)
            {
                throw ex;
            }
            return(Retornar > 0);
        }