private void button1_Click(object sender, EventArgs e) { eggs = new egg[Convert.ToInt32(numericUpDownEgg.Value)]; pan.init(Convert.ToInt32(numericUpDownEgg.Value)); salt = new salt(); salt.Count = Convert.ToInt32(numericUpDownSalt.Value); for (int i = 0; i < eggs.Length; ++i) { eggs[i] = new egg(); } if (numericUpDownEgg.Value > 0) { for (int i = 0; i < eggs.Length; i++) { knife.Clean(eggs[i]); } add_egg.Enabled = true; MessageBox.Show("Ингредиенты смешаны", "Бар", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("А про молоко то забыли...", "Бар", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void button7_Click(object sender, EventArgs e) { salt = new salt(); salt.Count = Convert.ToInt32(numericUpDownSalt.Value); if (salt.Count > 0) { pan.add_salt(salt); MessageBox.Show("Смесь взбита! Коктейль почти готов", "Бар", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Мороженого же нет!", "Ошибка логики", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
public void add_salt(salt s) { salt = s; }