コード例 #1
0
 public IngredientService(LightningLawInterviewRound1Context context)
 {
     _context = context;
 }
コード例 #2
0
 public RecipeService(LightningLawInterviewRound1Context context)
 {
     _context = context;
 }
コード例 #3
0
 public MenuService(LightningLawInterviewRound1Context context, IDish dish)
 {
     _context = context;
     _dish    = dish;
 }
コード例 #4
0
 public DishService(LightningLawInterviewRound1Context context, IRecipe recipe)
 {
     _context = context;
     _recipe  = recipe;
 }