package mi.hdm.recipes; import java.util.List; public class RecipeManager { private final List<Recipe> recipes; private final Categories categories; private final List<Ingredient> ingredients; private final NutritionCalculator nutritionCalculator; public RecipeManager(List<Recipe> recipes, Categories categories, List<Ingredient> ingredients, NutritionCalculator nutritionCalculator) { this.recipes = recipes; this.categories = categories; this.ingredients = ingredients; this.nutritionCalculator = nutritionCalculator; } public void addRecipe(){} public void deleteRecipe(int i) {} public void editRecipe (int i) {} public void addIngredient() {} public void deleteIngredient() {} }