Пример #1
0
        public DataTable LocalizarEmpresa(string razao = null)
        {
            DataTable tabela = new DataTable();

            EmpresaDAL empDAL = new EmpresaDAL(this.Conexao);

            tabela = empDAL.LocalizarEmpresa();

            return(tabela);
        }