public RecipesController(ICookRecipesService recipes, ICookProductsService products, ICookIngredientsService ingredients) { this.recipes = recipes; this.products = products; this.ingredients = ingredients; }
public IngredientsController(ICookIngredientsService ingredients) { this.ingredients = ingredients; }