public DataTable RetornarCampanhas() { campanhaDAL DCampanha = new campanhaDAL(); string sSql = DCampanha.RetornarCampanhas(); return(PontoBr.Banco.SqlServer.RetornarDataTable(sSql)); }
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)); }
public string RetornarDropCampanhas(bool bAtiva, int iIDUsuario, string sPerfil)//r { campanhaDAL DCampanha = new campanhaDAL(); string sSql = DCampanha.RetornarCampanhas(bAtiva, iIDUsuario, sPerfil); return(sSql); }