Exemplo n.º 1
0
 public PostReactionsController(
     IPostsService postsService,
     IPostReactionsService postReactionsService)
 {
     this.postsService         = postsService;
     this.postReactionsService = postReactionsService;
 }
Exemplo 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;
 }
Exemplo n.º 3
0
 public PostReactionsController(IPostReactionsService postReactionsService)
 => this.postReactionsService = postReactionsService;