public void Prod(List <Товар> a, string nazv, Продавец_консультант prod) { int num = 0; foreach (var item in a) { if (item.TovarName == nazv) { prod.KolTovar++; break; } num++; } a.Remove(a[num]); Console.WriteLine(); Console.WriteLine("Продано"); Console.WriteLine(); }
private void button1_Click(object sender, EventArgs e) { button2.Enabled = true; button3.Enabled = true; button4.Enabled = true; button5.Enabled = true; textBox2.Enabled = true; textBox4.Enabled = true; textBox5.Enabled = true; textBox6.Enabled = true; int n = int.Parse(textBox1.Text); магазин.bonus = int.Parse(textBox3.Text); prod = new List <Продавец_консультант>(); for (int i = 0; i < n; i++) { prodav = new Продавец_консультант(i + 1); prod.Add(prodav); } }
public int ZP(Продавец_консультант a) { return(a.KolTovar * bonus); }