Example #1
0
        public DataTable RetornarCampanhas()
        {
            campanhaDAL DCampanha = new campanhaDAL();
            string      sSql      = DCampanha.RetornarCampanhas();

            return(PontoBr.Banco.SqlServer.RetornarDataTable(sSql));
        }
Example #2
0
        public DataTable RetornarCampanhas(bool bAtiva, int iIDUsuario, string sPerfil)
        {
            campanhaDAL DCampanha = new campanhaDAL();
            string      sSql      = DCampanha.RetornarCampanhas(bAtiva, iIDUsuario, sPerfil);

            return(PontoBr.Banco.SqlServer.RetornarDataTable(sSql));
        }
Example #3
0
        public string RetornarDropCampanhas(bool bAtiva, int iIDUsuario, string sPerfil)//r
        {
            campanhaDAL DCampanha = new campanhaDAL();
            string      sSql      = DCampanha.RetornarCampanhas(bAtiva, iIDUsuario, sPerfil);

            return(sSql);
        }