public Int32 ExecuteFilter(Int32?tipo, String nome, String telefone, String celular, Int32 idAss, out List <TELEFONE> objeto)
        {
            try
            {
                objeto = new List <TELEFONE>();
                Int32 volta = 0;

                // Processa filtro
                objeto = _baseService.ExecuteFilter(tipo, nome, telefone, celular, idAss);
                if (objeto.Count == 0)
                {
                    volta = 1;
                }
                return(volta);
            }
            catch (Exception ex)
            {
                throw;
            }
        }