Exemplo n.º 1
0
        public List<Permissoes> PesquisarBL()
        {
            /*criar as regras de negocio*/
            PermissoesDA permissoesDA = new PermissoesDA();

            return permissoesDA.PesquisarDA();
        }
Exemplo n.º 2
0
        public List<Permissoes> PesquisarBL(int id_categoria, string nome)
        {
            PermissoesDA permissoesDA = new PermissoesDA();

            return permissoesDA.PesquisarDA(id_categoria, nome);
        }
Exemplo n.º 3
0
        public List<Permissoes> PesquisarBL(int id_categoria, int id_formulario)
        {
            PermissoesDA permissoesDA = new PermissoesDA();

            return permissoesDA.PesquisarDA(id_categoria, id_formulario);
        }
Exemplo n.º 4
0
        public List<Permissoes> PesquisarBL(int id_cat)
        {
            PermissoesDA permissoesDA = new PermissoesDA();

            return permissoesDA.PesquisarDA(id_cat);
        }