Example #1
0
        public CommentsController(ICommandBus commandBus, ICommentsLoader commentsLoader,
                                  IWatchingService watchingService)
            : base(commandBus)
        {
            this.commentsLoader = commentsLoader;

            this.watchingService = watchingService;
        }
Example #2
0
 public CommentsController(ICommandBus commandBus, ICommentsLoader commentsLoader)
     : base(commandBus)
 {
     this.commentsLoader = commentsLoader;
 }
 public UserNotificationsController(ICommandBus commandBus, ICommentsLoader commentsLoader)
     : base(commandBus)
 {
     this.commentsLoader = commentsLoader;
 }