Ejemplo n.º 1
0
 public JumpStartService(MeredithDbContext dbContext, JumpStartPlanService jumpStartPlanService,
                         EmailRecipientService emailRecipientService)
 {
     _dbContext             = dbContext;
     _jumpStartPlanService  = jumpStartPlanService;
     _emailRecipientService = emailRecipientService;
 }
Ejemplo n.º 2
0
 public JumpStartPreviewService(MeredithDbContext dbContext, PuppeteerService puppeteerService,
                                JumpStartPlanService jumpStartPlanService)
 {
     _dbContext            = dbContext;
     _puppeteerService     = puppeteerService;
     _jumpStartPlanService = jumpStartPlanService;
 }
Ejemplo n.º 3
0
 public JumpStartService(MeredithDbContext dbContext, ArticleService articleService,
                         IBackgroundJobClient backgroundJobClient, JumpStartPlanService jumpStartPlanService)
 {
     _dbContext            = dbContext;
     _articleService       = articleService;
     _backgroundJobClient  = backgroundJobClient;
     _jumpStartPlanService = jumpStartPlanService;
 }
Ejemplo n.º 4
0
 public ArticleService(MeredithDbContext dbContext, JumpStartPlanService jumpStartPlanService)
 {
     _dbContext            = dbContext;
     _jumpStartPlanService = jumpStartPlanService;
 }