public List<BancosInstrucoes> PesquisarBL()
        {
            /*criar as regras de negocio*/
            BancosInstrucoesDA bancosDA = new BancosInstrucoesDA();

            return bancosDA.PesquisarDA();
        }
        public List<BancosInstrucoes> PesquisarBL(int ban)
        {
            BancosInstrucoesDA bancosDA = new BancosInstrucoesDA();

            return bancosDA.PesquisarDA(ban);
        }