Esempio n. 1
0
 public SyncServiceTests(SportsFixture sportsFixture, ITestOutputHelper testOutputHelper)
     : base(testOutputHelper)
 {
     _syncService = sportsFixture.SyncService;
     _newsService = sportsFixture.NewsService;
     _newsArticleCommentService = sportsFixture.NewsArticleCommentService;
     _sportsContext             = sportsFixture.SportsContext;
 }
Esempio n. 2
0
 public BestCommentsScene(INewsService newsService
                          , SportsSettings sportsSettings
                          , INewsArticleCommentService newsArticleCommentService)
 {
     _newsService               = newsService;
     _sportsSettings            = sportsSettings;
     _newsArticleCommentService = newsArticleCommentService;
 }