Exemple #1
0
 public ParserPages(
     MultithreadDbContext multithreadDbContext,
     ILinksHistoryRepositoroes linksHistoryRepositoroes,
     LinksHistoryServices linksHistoryServices)
 {
     this.multithreadDbContext     = multithreadDbContext;
     this.linksHistoryRepositoroes = linksHistoryRepositoroes;
     this.linksHistoryServices     = linksHistoryServices;
 }
Exemple #2
0
 public StartApp(
     MultithreadDbContext dbContext,
     ILinksHistoryRepositoroes linksHistoryRepositoroes,
     LinksHistoryServices linksHistoryServices,
     ParserPages parserPages)
 {
     this.dbContext = dbContext;
     this.linksHistoryRepositoroes = linksHistoryRepositoroes;
     this.linksHistoryServices     = linksHistoryServices;
     this.parserPages = parserPages;
 }
Exemple #3
0
 public LinksHistoryServices(ILinksHistoryRepositoroes linksHistoryRepositoroes)
 {
     this.linksHistoryRepositoroes = linksHistoryRepositoroes;
 }