public CommentController(IUserFinder userFinder, ICommentDTOManager commentDTOManager, IPostNotifier postNotifier) { this.userFinder = userFinder; this.commentDTOManager = commentDTOManager; this.postNotifier = postNotifier; }
public PostController(IUserFinder userFinder, IPostDTOManager postDTOManager, IPostNotifier postNotifier) { this.userFinder = userFinder; this.postManager = postDTOManager; this.postNotifier = postNotifier; }