public ProductReviewController(IProductReviewUIService productReviewUIService,
                                IHelpfulnessVoteService helpfulnessVoteService, IGetCurrentUser getCurrentUser)
 {
     _productReviewUIService = productReviewUIService;
     _helpfulnessVoteService = helpfulnessVoteService;
     _getCurrentUser         = getCurrentUser;
 }
Пример #2
0
 public ProductReviewController(IProductReviewUIService productReviewUIService, IHelpfulnessVoteService helpfulnessVoteService)
 {
     _productReviewUIService = productReviewUIService;
     _helpfulnessVoteService = helpfulnessVoteService;
 }