예제 #1
0
 public AdminRecipesController(IAdminRecipeService adminRecipeService, IMapper mapper)
 {
     _mapper             = mapper;
     _adminRecipeService = adminRecipeService;
 }
예제 #2
0
 public RecipesController(IAdminRecipeService adminRecipeService)
 {
     this.adminRecipeService = adminRecipeService;
 }