public List<Emprestimos> PesquisarBL()
        {
            /*criar as regras de negocio*/
            EmprestimosDA varDA = new EmprestimosDA();

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

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

            return varDA.PesquisarDA(bai);
        }