public ArticleStore(NewsCrud_DBContext dbContext, Interfaces.IArticleQueueContext queueContext)
 {
     _dbContext    = dbContext;
     _queueContext = queueContext;
 }
示例#2
0
 public DBQueue(NewsCrud_DBContext context)
 {
     _context = context;
 }
示例#3
0
 public FeedProcessorController(NewsCrud_DBContext dbContext, Interfaces.IScrapeQueueContext queueContext)
 {
     _dbContext    = dbContext;
     _queueContext = queueContext;
 }
示例#4
0
 public SMH_RSSEngine(PublicationSection publicationSection, Publication publication, NewsCrud_DBContext dbContext) : base(publicationSection, publication, dbContext)
 {
 }
示例#5
0
 public BaseEngine(PublicationSection publicationSection, Publication publication, NewsCrud_DBContext dbContext)
 {
     _publicationSection = publicationSection;
     _publication        = publication;
     _dbContext          = dbContext;
 }