This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DadosRepository : RepositoryBase<Dados>, IDadosRepository | |
{ | |
private readonly RepositoryConfigurationVO _configdbconn; | |
public PlanilhaDadosRepository(RepositoryConfigurationVO configdbconn) : base(configdbconn.ConnectionString) | |
{ | |
_configdbconn = configdbconn; | |
} | |
public async Task<IEnumerable<Dados>> GetAllEnvioNull() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const models = require('../app/models') | |
const Sequelize = require('sequelize') | |
const fs = require('fs') | |
const path = require('path') | |
const sequelize = new Sequelize('', '', '', { | |
host: '', | |
dialect: 'postgres' | |
}) |