コード例 #1
0
 public RecipeController(
     RecipeInventory recipeInventory,
     MyPantry pantry)
 {
     _recipeInventory = recipeInventory;
     _pantry          = pantry;
 }
コード例 #2
0
 public ShoppingListController(
     ShoppingListInventory shoppingListInventory,
     MyPantry pantry, RecipeInventory recipeInventory)
 {
     _shoppingInventory = shoppingListInventory;
     _pantry            = pantry;
     _recipeInventory   = recipeInventory;
 }
コード例 #3
0
 public PantryController(MyPantry pantry)
 {
     _pantry = pantry;
 }