Exemplo n.º 1
0
 public CommentController(ICommentHandler handler) : base(handler)
 {
 }
 public CommentController(ICommentHandler handler, ICommentRepository repository) : base(handler)
 {
     this.repository = repository;
 }
Exemplo n.º 3
0
        public CommentLogicTest()
        {
            commentPersistence = new CommentPersistanceHandler();

            commentHandler = new CommentHandler();
        }