コード例 #1
0
ファイル: Item.cs プロジェクト: R4CLucky14/FreakyFastFood
 public Item(Menu Menu, String Title, String Description, Decimal Price = 0M)
     : this()
 {
     this.Menu = Menu;
     this.Title = Title;
     this.Description = Description;
     this.Price = Price;
 }
コード例 #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>();
 }
コード例 #3
0
ファイル: Food.cs プロジェクト: R4CLucky14/FreakyFastFood
 public Food( Menu Menu, String Title, String Description, Decimal Price = 0M )
     : base(Menu, Title, Description, Price)
 {
 }