public ReadingBoardService( ITrelloFactory factory, IReadingListService readingListService) { _readingListService = readingListService; _readingListBoard = factory.Board(TrelloBoardConstants.BoardId); }
public CachedReadingListService( IReadingListService readingListService, IReadingListCache readingListCache, ILogFactory logFactory) { _readingListService = readingListService; _readingListCache = readingListCache; _logger = logFactory.GetLogger(this.GetType()); }
public ReadingListModule( ITrelloAuthorizationWrapper trelloAuthWrapper, IReadingListService readingListService, IReadingListCollectionService readingListCollectionService) { _trelloAuthWrapper = trelloAuthWrapper; _readingListService = readingListService; _readingListCollectionService = readingListCollectionService; }
public ReadingListServiceProfiler(IReadingListService readingListService, ILogFactory logFactory) { _readingListService = readingListService; _logger = logFactory.GetLogger(GetType()); }