Esempio n. 1
0
 public ReplyReactionsController(
     IRepliesService repliesService,
     IReplyReactionsService replyReactionsService)
 {
     this.repliesService        = repliesService;
     this.replyReactionsService = replyReactionsService;
 }
Esempio n. 2
0
 public HomeController(
     IUsersService usersService,
     IPostsService postsService,
     IPostReactionsService postReactionsService,
     IReplyReactionsService replyReactionsService)
 {
     this.usersService          = usersService;
     this.postsService          = postsService;
     this.postReactionsService  = postReactionsService;
     this.replyReactionsService = replyReactionsService;
 }
Esempio n. 3
0
 public ReplyReactionsController(IReplyReactionsService replyReactionsService)
 => this.replyReactionsService = replyReactionsService;