示例#1
0
 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());
 }
示例#3
0
 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());
 }