escolares

This commit is contained in:
2020-11-16 09:58:55 -06:00
parent 324bd3184d
commit c49ef87cfc
11 changed files with 148 additions and 15 deletions
+7
View File
@@ -0,0 +1,7 @@
const Servicio = require('../../db/tablas/Servicio');
const serviciosAdmin = (body) => {
Servicio.findAll().then((res) => {
return res;
});
};
+15
View File
@@ -0,0 +1,15 @@
const Servicio = require('../../db/tablas/Servicio');
const nuevo = (body) => {
let idPrograma = body.idUsuarioResponsable;
let idAlumno = body.idAlumno;
let numeroCuenta = body.numeroCuenta;
let creditos = body.creditos;
let nombre = body.nombre;
let correo = body.correo;
let fechaInicio = boyd.fechaInicio;
let fechaFin = boyd.fechaFin;
let cartaAceptacion = body.cartaAceptacion;
};
module.exports = nuevo;