Beispiel #1
0
        public void AddItem(string name, MenuItem.Category category, string description, double cost)
        {
            MenuItem newItem = new MenuItem();

            newItem.Name         = name;
            newItem.Description  = description;
            newItem.Cost         = cost;
            newItem.ItemCategory = category;
            newItem.NewItem      = DateTime.Now.Date;
            Items.Add(newItem);
        }
 static void Main(string[] args)
 {
     MenuItem.Category newCategory = MenuItem.Category.Appetizer;
     Console.WriteLine("{0}, {0:D}", newCategory);
     Console.ReadLine();
 }