//Cadastra um novo eleitor. public void cadastrar(int titulo, Local local, string nome, string nascimento) { Eleitor aux = new Eleitor(titulo, local.getZona(), local.getSecao(), nome, nascimento); this.p.Add(aux); }
public int getSecao() { return(local.getSecao()); }