public IngredientService(LightningLawInterviewRound1Context context)
 {
     _context = context;
 }
 public RecipeService(LightningLawInterviewRound1Context context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public MenuService(LightningLawInterviewRound1Context context, IDish dish)
 {
     _context = context;
     _dish    = dish;
 }
Ejemplo n.º 4
0
 public DishService(LightningLawInterviewRound1Context context, IRecipe recipe)
 {
     _context = context;
     _recipe  = recipe;
 }