2021-09-23 19:33:27 -05:00
|
|
|
const { Op } = require('sequelize');
|
2022-02-01 06:44:34 -06:00
|
|
|
const Infraccion = require('../../db/tablas/Infraccion');
|
2021-09-02 08:21:35 -05:00
|
|
|
|
2021-09-23 19:33:27 -05:00
|
|
|
const get = async () =>
|
|
|
|
|
Infraccion.findAll({ where: { idInfraccion: { [Op.ne]: 1 } } });
|
2021-09-02 08:21:35 -05:00
|
|
|
|
|
|
|
|
module.exports = get;
|