Head First C# Code: Chapter 5 Dinner Party DinnerParty.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace __DinnerParty
{
public class DinnerParty
{
const int CostOfFoodPerPerson = 25;
private int numberOfPeople;
public int NumberOfPeople {
get { return numberOfPeople; }
set
{
numberOfPeople = value;
CalculateCostOfDecorations(fancyDecorations);
}
}
private bool fancyDecorations;
public decimal CostOfBeveragesPerPerson;
public decimal CostOfDecorations = 0;