Пример #1
0
        public List<Estados> PesquisarBL(string campo, string valor)
        {
            /*criar as regras de negocio*/
            EstadosDA estadosDA = new EstadosDA();

            return estadosDA.PesquisarDA(campo, valor);
        }
Пример #2
0
        public List<Estados> PesquisarBL(int id_est)
        {
            /*criar as regras de negocio*/
            EstadosDA estadosDA = new EstadosDA();

            return estadosDA.PesquisarDA(id_est);
        }