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