Beispiel #1
0
 public PublishingJob(Env env, IDocumentStore store, IDataService dataService, IHubService hubService, IGovService govService, ISmtpClient smtpClient)
 {
     this.env         = env;
     this.store       = store;
     this.dataService = dataService;
     this.hubService  = hubService;
     this.govService  = govService;
     this.smtpClient  = smtpClient;
 }
Beispiel #2
0
 public RobotPublisher(
     Env env,
     IDocumentSession db,
     IRecordRedactor recordRedactor,
     IPublishingUploadRecordService uploadRecordService,
     IDataService dataService,
     IGovService govService,
     IHubService hubService
     )
 {
     this.env                 = env;
     this.db                  = db;
     this.recordRedactor      = recordRedactor;
     this.uploadRecordService = uploadRecordService;
     this.dataService         = dataService;
     this.govService          = govService;
     this.hubService          = hubService;
 }