コード例 #1
0
 public CallbackModule(
     IReadingListCache readingListCache,
     ILogFactory logger,
     ITrelloWebHookSources webHookSource)
 {
     _logger           = logger.GetLogger(GetType());
     _readingListCache = readingListCache;
     _webHookSource    = webHookSource;
 }
コード例 #2
0
 public CachedReadingListService(
     IReadingListService readingListService,
     IReadingListCache readingListCache,
     ILogFactory logFactory)
 {
     _readingListService = readingListService;
     _readingListCache   = readingListCache;
     _logger             = logFactory.GetLogger(this.GetType());
 }