Ejemplo n.º 1
0
        public DataTable RetornarCampanhas()
        {
            campanhaDAL DCampanha = new campanhaDAL();
            string      sSql      = DCampanha.RetornarCampanhas();

            return(PontoBr.Banco.SqlServer.RetornarDataTable(sSql));
        }
Ejemplo n.º 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));
        }
Ejemplo n.º 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);
        }