public Int32 ExecuteFilter(Int32?catId, Int32?filialId, String nome, String cpf, String telefone, String celular, String cidade, DateTime dataNasc, String email, Int32?idAss, out List <PACIENTE> objeto) { try { objeto = new List <PACIENTE>(); Int32 volta = 0; // Processa filtro objeto = _baseService.ExecuteFilter(catId, filialId, nome, cpf, telefone, celular, cidade, dataNasc, email, idAss); if (objeto.Count == 0) { volta = 1; } return(volta); } catch (Exception ex) { throw; } }