public RecipeCommentsController(IRecipeCommentsService recipeCommentsService)
 {
     RecipeCommentsService = recipeCommentsService;
 }
Exemple #2
0
 public RecipeCommentsController(IRecipeCommentsService recipeCommentsService, UserManager <IdentityUser> userManager)
 {
     this.recipeComments = recipeCommentsService;
     this.userManager    = userManager;
 }