00001 using System; 00002 using System.Collections.Generic; 00003 using System.Text; 00004 00005 namespace Foodolini.BusinessLogic 00006 { 00011 00012 public class Storage 00013 { 00014 IEnumerable<FoodItem > foodItems; 00015 00016 public IEnumerable<FoodItem> FoodItems 00017 { 00018 get; 00019 set; 00020 } 00021 00022 public IEnumerable<FoodItem> GetIngredientQuantity(Ingredient ingredient) 00023 { 00024 throw new NotImplementedException(); 00025 } 00026 00027 public List<Recipe> SuggestRecipes(List<Criteria> criteria) 00028 { 00029 throw new NotImplementedException(); 00030 } 00031 } 00032 }