示例#1
0
 public RecipesController(ICookRecipesService recipes, ICookProductsService products, ICookIngredientsService ingredients)
 {
     this.recipes     = recipes;
     this.products    = products;
     this.ingredients = ingredients;
 }
 public IncludedIngredientsViewComponent(ICookRecipesService recipes)
 {
     this.recipes = recipes;
 }