public RegistrationWorkflow()
 {
     emailService = new DomainServices.EmailService(_ctx);
     applicationServices = new DomainServices.ApplicationService();
     smsLogServices = new SMSLogService(_ctx);
     smsService = new DomainServices.SMSService(applicationServices, smsLogServices, _ctx, logger);
     transactionBatchService = new DomainServices.TransactionBatchService(_ctx, logger);
 }
Esempio n. 2
0
 public RegistrationWorkflow()
 {
     emailService            = new DomainServices.EmailService(_ctx);
     applicationServices     = new DomainServices.ApplicationService();
     smsLogServices          = new SMSLogService(_ctx);
     smsService              = new DomainServices.SMSService(applicationServices, smsLogServices, _ctx, logger);
     transactionBatchService = new DomainServices.TransactionBatchService(_ctx, logger);
 }
Esempio n. 3
0
 public MessageWorkflow(IDbContext context)
 {
     _ctx = new Context();
     _transactionBatchService = new TransactionBatchService(_ctx, _logger);
     _emailService = new DomainServices.EmailService(_ctx);
     _applicationService = new ApplicationService(_ctx);
     _smsLogService = new SMSLogService(_ctx);
     _smsService = new DomainServices.SMSService(_applicationService, _smsLogService, _ctx, _logger);
 }
Esempio n. 4
0
 public MessageWorkflow(IDbContext context)
 {
     _ctx = new Context();
     _transactionBatchService = new TransactionBatchService(_ctx, _logger);
     _emailService            = new DomainServices.EmailService(_ctx);
     _applicationService      = new ApplicationService(_ctx);
     _smsLogService           = new SMSLogService(_ctx);
     _smsService = new DomainServices.SMSService(_applicationService, _smsLogService, _ctx, _logger);
 }
Esempio n. 5
0
 public MessageWorkflow(DomainServices.ApplicationService applicationServices, DomainServices.EmailService emailService,
     DomainServices.TransactionBatchService transactionBatchService, DomainServices.SMSLogService smsLogService,
     DomainServices.SMSService smsService)
 {
     _transactionBatchService = transactionBatchService;
     _emailService = emailService;
     _applicationService = applicationServices;
     _smsLogService = smsLogService;
     _smsService = smsService;
 }
Esempio n. 6
0
 public UserWorkflow(IDbContext context)
 {
     _ctx                    = context;
     logger                  = LogManager.GetCurrentClassLogger();
     emailService            = new DomainServices.EmailService(_ctx);
     applicationServices     = new DomainServices.ApplicationService();
     smsLogServices          = new SMSLogService(_ctx);
     smsService              = new DomainServices.SMSService(applicationServices, smsLogServices, _ctx, logger);
     transactionBatchService = new DomainServices.TransactionBatchService(_ctx, logger);
 }
Esempio n. 7
0
 public UserWorkflow(IDbContext context)
 {
     _ctx = context;
     logger = LogManager.GetCurrentClassLogger();
     emailService = new DomainServices.EmailService(_ctx);
     applicationServices = new DomainServices.ApplicationService();
     smsLogServices = new SMSLogService(_ctx);
     smsService = new DomainServices.SMSService(applicationServices, smsLogServices, _ctx, logger);
     transactionBatchService = new DomainServices.TransactionBatchService(_ctx, logger);
 }
Esempio n. 8
0
 public MessageWorkflow(DomainServices.ApplicationService applicationServices, DomainServices.EmailService emailService,
                        DomainServices.TransactionBatchService transactionBatchService, DomainServices.SMSLogService smsLogService,
                        DomainServices.SMSService smsService)
 {
     _transactionBatchService = transactionBatchService;
     _emailService            = emailService;
     _applicationService      = applicationServices;
     _smsLogService           = smsLogService;
     _smsService = smsService;
 }