private void numGente_ValueChanged(object sender, EventArgs e) { if (barDeMoe.Gente.Count <= numGente.Value && barDeMoe.Gente.Count < (barDeMoe.Empleados.Count * 10)) // puedo agregar // Boton Arriba { loadData = new frmCarga(); if (loadData.ShowDialog() == DialogResult.OK) { if (!(barDeMoe + new Gente(loadData.Edad))) { MessageBox.Show($"No Agregado: {barDeMoe.Gente.Count}"); } else { MessageBox.Show($"Agregado: {barDeMoe.Gente.Count}"); } } } else if (barDeMoe.Gente.Count > numGente.Value && barDeMoe.Gente.Count > 0) { barDeMoe.Gente.RemoveAt(0); MessageBox.Show($"Borrado: {barDeMoe.Gente.Count}"); } else { MessageBox.Show($"No hace nada"); } }
private void numEmpleados_ValueChanged(object sender, EventArgs e) { if (barDeMoe.Empleados.Count <= numEmpleados.Value) // Boton Arriba { loadData = new frmCarga(); if (loadData.ShowDialog() == DialogResult.OK) { if (!(barDeMoe + (new Empleado(loadData.Nombre, loadData.Edad)))) { MessageBox.Show($"No Agregado: {barDeMoe.Empleados.Count}"); // para testear } else { MessageBox.Show($"Agregado: {barDeMoe.Empleados.Count}"); // para testear } } } else if (barDeMoe.Empleados.Count > numEmpleados.Value && barDeMoe.Empleados.Count > 0) { barDeMoe.Empleados.RemoveAt(barDeMoe.Empleados.Count - 1); MessageBox.Show($"Borrado: {barDeMoe.Empleados.Count}"); } numEmpleados.Maximum = barDeMoe.Empleados.Count + 1; numGente.Maximum = barDeMoe.Empleados.Count * 10; }