escolares
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
const Servicio = require('../../db/tablas/Servicio');
|
||||
|
||||
const serviciosAdmin = (body) => {
|
||||
Servicio.findAll().then((res) => {
|
||||
return res;
|
||||
});
|
||||
};
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user