16 lines
431 B
JavaScript
16 lines
431 B
JavaScript
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;
|