Esempio n. 1
0
 public QueuRepository(ITimeAccessor timeAccessor, IOptions <MsSqlSettings> options)
 {
     this.connectionString = options.Value.ConnectionString;
     this.timeAccessor     = timeAccessor;
 }
Esempio n. 2
0
 public SqlWebHookNotificationSender(ITimeAccessor timeAccessor, IMemoryCache memoryCache, ILoggerFactory loggerFactory, IOptions <MsSqlSettings> options)
     : base(timeAccessor, memoryCache, loggerFactory)
 {
     this.connectionString = options.Value.ConnectionString;
 }
Esempio n. 3
0
 protected WebHookNotificationSender(ITimeAccessor timeAccessor, IMemoryCache memoryCache, ILoggerFactory loggerFactory)
 {
     this.timeAccessor = timeAccessor;
     this.memoryCache  = memoryCache;
     this.logger       = loggerFactory.CreateLogger(this.GetType());
 }