Exemplo n.º 1
0
 public Item(Menu Menu, String Title, String Description, Decimal Price = 0M)
     : this()
 {
     this.Menu = Menu;
     this.Title = Title;
     this.Description = Description;
     this.Price = Price;
 }
Exemplo n.º 2
0
 public Comestible(Menu Menu, String Title, String Description, Decimal Price = 0M)
     : base(Menu, Title, Description, Price)
 {
     this.Nutrition = new Nutrition();
     this.Ingredients = new Collection<Ingredient>();
     this.Allergens = new Collection<Allergen>();
     this.Choices = new Collection<Choice>();
 }
Exemplo n.º 3
0
 public Food( Menu Menu, String Title, String Description, Decimal Price = 0M )
     : base(Menu, Title, Description, Price)
 {
 }