public CommReactsWidgetViewComponent(CommReactService commReactService,
                                      ReactionService reactionService, UserInfoService userInfoService)
 {
     this.commReactService = commReactService;
     this.reactionService  = reactionService;
     this.userInfoService  = userInfoService;
 }
Пример #2
0
 public ReactionsController(PostReactService postReactService,
                            CommReactService commReactService, ReactionService reactionService)
 {
     this.postReactService = postReactService;
     this.commReactService = commReactService;
     this.reactionService  = reactionService;
 }