2022-03-14 15:08:05 -06:00
|
|
|
const { Op } = require('sequelize');
|
2021-06-14 12:03:54 -05:00
|
|
|
const Programa = require('../../db/tablas/Programa');
|
2021-06-14 12:01:46 -05:00
|
|
|
|
2022-03-14 15:08:05 -06:00
|
|
|
const get = async () =>
|
|
|
|
|
Programa.findAll({
|
|
|
|
|
where: { [Op.or]: [{ idPrograma: 2 }, { idPrograma: 3 }] },
|
|
|
|
|
});
|
2021-06-14 12:01:46 -05:00
|
|
|
|
|
|
|
|
module.exports = get;
|