Пример #1
0
 public Form1()
 {
     InitializeComponent();
     dinnerParty = new DinnerParty();
     dinnerParty.SetPartyOptions((int)numericUpDown1.Value, fancyBox.Checked);
     dinnerParty.SetHealthyOptions(healthyBox.Checked);
     dinnerParty.CalculateCostOfDecorations(fancyBox.Checked);
     DisplayDinnerPartyCost();
 }
Пример #2
0
 private void healthyBox_CheckedChanged(object sender, EventArgs e)
 {
     dinnerParty.SetHealthyOptions(healthyBox.Checked);
     DisplayDinnerPartyCost();
 }