private void buttonPesquisar_Click(object sender, EventArgs e) { if (textBoxCPF.Text != "") { listBoxVoos.Items.Clear(); cpf = long.Parse(textBoxCPF.Text.Replace(".", null)); Pessoa p = (Pessoa)hash.Buscar(cpf); if (p != null) { listBoxVoos.Items.Add(p.Nome); Dados[] voos = p.Voos.Imprimir(); for (int i = 0; i < voos.Length; i++) { Voo v = (Voo)voos[i]; listBoxVoos.Items.Add(v.Id); } } else { listBoxVoos.Items.Add("CPF não encontrado."); } } }
public bool Equals(Dados other) { Voo aux = (Voo)other; return(Id.Equals(aux.Id)); }
public int CompareTo(Dados other) { Voo aux = (Voo)other; return(Id.CompareTo(aux.Id)); }
public void AddVoo(string voo) { Voo aux = new Voo(voo); this.voos.Add(aux); }