public DisqusSynchronizationService(
            IOrchardServices orchardServices,
            IDisqusMappingService commentMappingService)
        {
            _orchardServices = orchardServices;
            _commentMappingService = commentMappingService;

            Logger = NullLogger.Instance;
        }
        public DisqusSynchronizationService(
            IOrchardServices orchardServices,
            IDisqusMappingService commentMappingService)
        {
            _orchardServices       = orchardServices;
            _commentMappingService = commentMappingService;

            Logger = NullLogger.Instance;
        }
 public DisqusCommentUpdateService(
                                     IOrchardServices services,
                                     IDisqusMappingService commentMappingService,
                                     ICommentService commentService)
 {
     this.orchardServices = services;
     this.commentMappingService = commentMappingService;
     this.commentService = commentService;
     this.Logger = NullLogger.Instance;
 }
 public DisqusCommentUpdateService(
     IOrchardServices services,
     IDisqusMappingService commentMappingService,
     ICommentService commentService)
 {
     this.orchardServices       = services;
     this.commentMappingService = commentMappingService;
     this.commentService        = commentService;
     this.Logger = NullLogger.Instance;
 }