private void VotosTotales_Click(object sender, EventArgs e) { if (votantes.Count == 0) { MessageBox.Show("Primero debe generar los resultados.", " Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { Voto.votosTotales(votantes, votantes_total); //se cuentan los votos totales y los votos por sexo } }
public void agregarVoto(int votanteID, string candidato) { Voto = new Voto(votanteID, candidato); //se crea el voto del votante }
public Candidato(int votanteid, string candidato, string Provincia) { Voto = new Voto(votanteid, candidato); //se establece el id del votante y el candidato que votó votante = new Votante(Provincia); //se establece la provincia a la que pertenece el votante }