public WebhooksService(
     ILogger <WebhooksService> logger,
     IWebhookContentProcessor webhookContentProcessor,
     IConfiguration config)
 {
     this.logger = logger;
     this.webhookContentProcessor = webhookContentProcessor;
     _sharedContentId             = config.GetValue <Guid>(Constants.SharedContentGuidConfig);
 }
Exemplo n.º 2
0
 public WebhooksService(
     ILogger <WebhooksService> logger,
     IContentCacheService contentCacheService,
     IWebhookContentProcessor webhookContentProcessor)
 {
     this.logger = logger;
     this.contentCacheService     = contentCacheService;
     this.webhookContentProcessor = webhookContentProcessor;
 }