Exemplo n.º 1
0
 public EmailService(IDbContext context, Logger logger, ApplicationService applicationService, EmailLogService emailLogService)
 {
     _ctx = context;
     _logger = logger;
     _applicationService = applicationService;
     _emailLogService = emailLogService;
 }
Exemplo n.º 2
0
 public EmailService(IDbContext context, Logger logger)
 {
     _ctx = context;
     _logger = logger;
     _applicationService = new ApplicationService(_ctx);
     _emailLogService = new EmailLogService(_ctx);
 }
Exemplo n.º 3
0
 public EmailService(IDbContext context)
 {
     _ctx = context;
     _logger = LogManager.GetCurrentClassLogger();
     _applicationService = new ApplicationService(_ctx);
     _emailLogService = new EmailLogService(_ctx);
 }
Exemplo n.º 4
0
 public EmailService(IDbContext context, Logger logger, ApplicationService applicationService, EmailLogService emailLogService)
 {
     _ctx                = context;
     _logger             = logger;
     _applicationService = applicationService;
     _emailLogService    = emailLogService;
 }
Exemplo n.º 5
0
 public EmailService(IDbContext context, Logger logger)
 {
     _ctx                = context;
     _logger             = logger;
     _applicationService = new ApplicationService(_ctx);
     _emailLogService    = new EmailLogService(_ctx);
 }
Exemplo n.º 6
0
 public EmailService(IDbContext context)
 {
     _ctx                = context;
     _logger             = LogManager.GetCurrentClassLogger();
     _applicationService = new ApplicationService(_ctx);
     _emailLogService    = new EmailLogService(_ctx);
 }