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);
 }
Exemplo 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);
 }
 public PaymentAccountWorkflow(IDbContext context)
 {
     _ctx = 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);
 }
Exemplo 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);
 }
Exemplo n.º 5
0
 public PaymentAccountWorkflow(IDbContext context)
 {
     _ctx = 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);
 }
Exemplo n.º 6
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);
 }
Exemplo n.º 7
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;
 }
Exemplo n.º 8
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);
 }
Exemplo n.º 9
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);
 }
Exemplo n.º 10
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;
 }
 public PaymentAccountWorkflow(DomainServices.ApplicationService applicationServices, DomainServices.Interfaces.IEmailService emailService,
     DomainServices.TransactionBatchService transactionBatchService, DomainServices.SMSLogService smsLogService,
     DomainServices.SMSService smsService)
 {
     _ctx = new Context();
     _transactionBatchService = transactionBatchService;
     _emailService = emailService;
     _applicationService = applicationServices;
     _smsLogService = smsLogService;
     _smsService = smsService;
 }
Exemplo n.º 12
0
 public PaymentAccountWorkflow(DomainServices.ApplicationService applicationServices, DomainServices.Interfaces.IEmailService emailService,
                               DomainServices.TransactionBatchService transactionBatchService, DomainServices.SMSLogService smsLogService,
                               DomainServices.SMSService smsService)
 {
     _ctx = new Context();
     _transactionBatchService = transactionBatchService;
     _emailService            = emailService;
     _applicationService      = applicationServices;
     _smsLogService           = smsLogService;
     _smsService = smsService;
 }
Exemplo n.º 13
0
 public ProcessOpenPaymentJob()
 {
     transactionBatchService = new DomainServices.TransactionBatchService(_ctx, _logger);
 }
 public ProcessOpenPaymentJob()
 {
     transactionBatchService = new DomainServices.TransactionBatchService(_ctx, _logger);
 }