private void FrmSenadores_Load(object sender, EventArgs e) { Votacion votos; SerializaBinaria ser = new SerializaBinaria(); if (File.Exists("file.bin")) { votos = ser.Leer("file.bin"); } else { MessageBox.Show("No hay votacion"); } }
public void ManejadorVoto(string senador, Votacion.EVoto voto) { if (this.groupBox2.InvokeRequired) { Votacion.Voto recall = new Votacion.Voto(this.ManejadorVoto); this.Invoke(recall, new object[] { senador, voto }); } else { // Leo la banca del Senador actual PictureBox p = this.graficos.ElementAt(int.Parse(senador) - 1); switch (voto) { case Votacion.EVoto.Afirmativo: // Sumo votantes al Label correspondiente lblAfirmativo.Text = (int.Parse(lblAfirmativo.Text) + 1).ToString(); // Marco la banca con color Verde p.BackColor = Color.Green; break; case Votacion.EVoto.Negativo: // Sumo votantes al Label correspondiente lblNegativo.Text = (int.Parse(lblNegativo.Text) + 1).ToString(); // Marco la banca con color Rojo p.BackColor = Color.Red; break; case Votacion.EVoto.Abstencion: // Sumo votantes al Label correspondiente lblAbstenciones.Text = (int.Parse(lblAbstenciones.Text) + 1).ToString(); // Marco la banca con color Amarillo p.BackColor = Color.Yellow; break; } // Quito un Senador de los que un no votaron, para marcar cuando termina la votación int aux = int.Parse(lblEsperando.Text) - 1; lblEsperando.Text = aux.ToString(); // Si finaliza la votación, muestro si Es Ley o No Es Ley if (aux == 0) { MessageBox.Show((int.Parse(lblAfirmativo.Text) - int.Parse(lblNegativo.Text)) > 0 ? "Es Ley" : "No es Ley", txtLeyNombre.Text); // Guardar resultados Dao db = new Dao(); SerializaBinaria ser = new SerializaBinaria(); db.Guardar("votacion-sp-2018", votacion); ser.Guardar("file.bin", votacion); } } }
public void ValidarSerializacion() { Dictionary <string, Votacion.EVoto> participantes = new Dictionary <string, Votacion.EVoto>(); participantes.Add("1", Votacion.EVoto.Afirmativo); participantes.Add("2", Votacion.EVoto.Negativo); participantes.Add("3", Votacion.EVoto.Abstencion); Votacion votos = new Votacion("Ley X", participantes); SerializaBinaria ser = new SerializaBinaria(); ser.Guardar("unitTest.bin", votos); }