public IngredientsController(IRecipeBookService recipeBookService)
 {
     _recipeBookService = recipeBookService;
 }
 public RecipeDetailsController(IRecipeBookService recipeBookService)
 {
     _recipeBookService = recipeBookService;
 }
 public RecipeBookController(IRecipeBookService svc)
 {
     _svc = svc;
 }
Beispiel #4
0
 public RecipesController(IRecipeBookService recipeBookService, IMapper mapper)
 {
     _recipeBookService = recipeBookService;
     _mapper            = mapper;
 }
Beispiel #5
0
 public CategoriesController(IRecipeBookService recipeBookService)
 {
     _recipeBookService = recipeBookService;
 }