コード例 #1
0
 public RecipesController(ICookRecipesService recipes, ICookProductsService products, ICookIngredientsService ingredients)
 {
     this.recipes     = recipes;
     this.products    = products;
     this.ingredients = ingredients;
 }
コード例 #2
0
 public IngredientsController(ICookIngredientsService ingredients)
 {
     this.ingredients = ingredients;
 }