示例#1
0
 public ReviewCommentController(IReviewCommentService reviewCommentService)
 {
     this.reviewCommentService = reviewCommentService;
 }
示例#2
0
 public ReviewCommentController(IReviewCommentService reviewCommentService, UserManager <User> userManager)
 {
     this.reviewCommentService = reviewCommentService;
     this.userManager          = userManager;
 }