Ejemplo n.º 1
0
        public List<Emprestimos> PesquisarBL()
        {
            /*criar as regras de negocio*/
            EmprestimosDA varDA = new EmprestimosDA();

            return varDA.PesquisarDA();
        }
Ejemplo n.º 2
0
        public List<Emprestimos> PesquisarBL(string campo, string valor)
        {
            EmprestimosDA varDA = new EmprestimosDA();

            return varDA.PesquisarDA(campo, valor);
        }
Ejemplo n.º 3
0
        public List<Emprestimos> PesquisarBL(int bai)
        {
            EmprestimosDA varDA = new EmprestimosDA();

            return varDA.PesquisarDA(bai);
        }