This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Quiero que hagas una investigacion a fondo de la implementacion actual | |
Lo que se busca es el siguiente modelo de negocio. Por mi parte es crear un conjunto de talonarios digitales, de diferentes tipos, la idea es llegar a unos 100, pero actualmente tengo 3 (budgets, receipts y report-maquinaria), Para ello he construido todo un conjunto de caracteristicas que son necesarios para poder administrar la emision de estos talonarios, entre ellas, clientes, companies, coupons, productos, upload-image, users, seeding a la base de datos y en este momento me encuenctro creando la plataforma de pagos con mercado pago, la cual ya tiene la implementacion basica. | |
Lo que busco ahora, es poder unificar estos pagos, con un plan de suscripciones basado en el uso, es decir por ejemplo $5000 / 100 talonarios, o lo que sea, pero no es una suscripcion mensual. | |
oara ello he creado otras estructuras como transactions, subscriptions, plans que permitiran administrar este modelo de negocio, pero aun no están listas, e incluso se |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const path = require('path'); | |
const inquirer = require('inquirer'); | |
// Configuración de ignorados | |
const ignoredDirectories = ['node_modules', '.next', '.git']; | |
const ignoredFiles = [ | |
'.DS_Store', | |
'package-lock.json', | |
// '.eslintrc.json', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO tabla VALUES(27205, 'Inception', 8.364, 34495, 'Released', '2010-07-15', 825532764, 148, 0, '/8ZTVqvKDQ8emSGUEMjsS4yHAwrp.jpg', 160000000, 'https://www.warnerbros.com/movies/inception', 'tt1375666', 'en', 'Inception', '\"Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"\"inception\"\", the implantation of another person''s idea into a target''s subconscious.\"', 83.952, '/oYuLEt3zVCKq57qu2F8dT7NIa6f.jpg', 'Your mind is the scene of the crime.', '\"Action, Science Fiction, Adventure\"', '\"Legendary Pictures, Syncopy, Warner Bros. Pictures\"', '\"United Kingdom, United States of America\"', '\"English, French, Japanese, Swahili\"') | |
INSERT INTO tabla VALUES(157336, 'Interstellar', 8.417, 32571, 'Released', '2014-11-05', 701729206, 169, 0, '/pbrkL804c8yAv3zBZR4QPEafpAR.jpg', 165000000, 'http://www.interstellarmovie.net/', 'tt0816692', 'en', 'Interstel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create database ParkingSystemsSA | |
go | |
use ParkingSystemsSA | |
go | |
create table Cliente( | |
idCliente int primary key identity, | |
rut varchar(9) unique null, | |
nombre varchar(50), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
## | |
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | |
# User-specific files | |
*.rsuser | |
*.suo | |
*.user | |
*.userosscache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--Para completar la prueba debe escribir las consultar correctamente para las siguientes solicitudes: | |
Consultas simples | |
1. lista el nombre de todas las flotas que ha en la tabla flotas. | |
select nombre from flota | |
2. lista el nombre de todas las flotas que hay en la tabla flotas, convirtiendo el nombre a | |
mayúsculas. | |
select UPPER(nombre) from flota | |
3. lista el nombre de todos los imperios que hay en la tabla imperios, convirtiendo el nombre a | |
minúsculas. | |
select Lower(nombre) from imperio |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Console.Clear(); | |
string nombre = "Este es mi nombre"; | |
int saldo = 10000; | |
string contraseña = "0000"; | |
string contraseñaIngresada = ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use aiep_inicio | |
--Devuelve una lista con el nombre del producto, precio y nombre de fabricante de todos los productos de la base de datos. | |
select producto.nombre, producto.precio, fabricante.nombre from producto, fabricante where fabricante.id_fabricante = producto.fabricante | |
select producto.nombre, producto.precio, fabricante.nombre from producto join fabricante on producto.fabricante = fabricante.id_fabricante | |
--Devuelve una lista con el nombre del producto, precio y nombre de fabricante de todos los productos de la base de datos. Ordene el resultado por el nombre del fabricante, por orden alfabético. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Drawing; | |
using System.Linq; | |
using System.Runtime.Serialization.Formatters; | |
using System.Security.Claims; | |
using System.Security.Cryptography.X509Certificates; | |
using System.Text; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Globalization; | |
Console.Clear(); | |
Console.CursorVisible = false; | |
Lineas(); | |
PintarRecuadro(ConsoleColor.White,3,1,18,5); | |
PintarRecuadro(ConsoleColor.Magenta,3,7,19,7); | |
PintarRecuadro(ConsoleColor.DarkBlue,25,1,31,5); |
NewerOlder