public CommentsService(
     CampfireStoriesDbContext dbContext,
     IUsersService userService,
     ISubCommentsService subCommentsService)
 {
     this.dbContext          = dbContext;
     this.userService        = userService;
     this.subCommentsService = subCommentsService;
 }
Esempio n. 2
0
 public SubCommentsController(ISubCommentsService subCommentsService)
 {
     this.subCommentsService = subCommentsService;
 }