Example #1
0
        public string RetornarDropAcoes()//r
        {
            acaoDAL DAcao = new acaoDAL();
            string  sSql  = DAcao.RetornarAcoes();

            return(sSql);
        }
Example #2
0
        public DataTable RetornarAcoes()
        {
            acaoDAL   DAcao     = new acaoDAL();
            string    sSql      = DAcao.RetornarAcoes();
            DataTable dataTable = PontoBr.Banco.SqlServer.RetornarDataTable(sSql);

            return(dataTable);
        }