public List<Estados> PesquisarBL(string campo, string valor) { /*criar as regras de negocio*/ EstadosDA estadosDA = new EstadosDA(); return estadosDA.PesquisarDA(campo, valor); }
public List<Estados> PesquisarBL(int id_est) { /*criar as regras de negocio*/ EstadosDA estadosDA = new EstadosDA(); return estadosDA.PesquisarDA(id_est); }