public CallbackModule( IReadingListCache readingListCache, ILogFactory logger, ITrelloWebHookSources webHookSource) { _logger = logger.GetLogger(GetType()); _readingListCache = readingListCache; _webHookSource = webHookSource; }
public CachedReadingListService( IReadingListService readingListService, IReadingListCache readingListCache, ILogFactory logFactory) { _readingListService = readingListService; _readingListCache = readingListCache; _logger = logFactory.GetLogger(this.GetType()); }