コード例 #1
0
 public LogEntryFoodItem(FoodItem foodItem, decimal serving)
 {
     this.FoodItem = foodItem;
     this.Serving = serving;
 }
コード例 #2
0
		private static FoodItem AddFoodItem(string name, string servingSize, int calories, List<FoodItem> foodItems)
		{
			var foodItem = new FoodItem() { Name = name, ServingSize = servingSize, Calories = calories };
			foodItems.Add(foodItem);
			return foodItem;
		}