public int EliminarDFactura(C_DetalleFactura dfactura)
        {
            int retorno = 0;

            con.abrir();
            SqlCommand cmd = new SqlCommand(string.Format("Delete from DetalleFactura where iddetalle = {0}", dfactura.iddetalle), con.conectar);

            retorno = cmd.ExecuteNonQuery();
            con.cerrar();

            return(retorno);
        }
        public int AgregarInventario(C_DetalleFactura dfactura)
        {
            int retorno = 0;

            con.abrir();

            SqlCommand cmd = new SqlCommand(string.Format("Insert into DetalleFactura(idfactura,idproducto,cantidad,fecha) values ({0},{1},{2},'{3}')",
                                                          dfactura.idfactura, dfactura.idproducto, dfactura.cantidad, dfactura.fecha), con.conectar);

            retorno = cmd.ExecuteNonQuery();
            con.cerrar();
            return(retorno);
        }