public EmailService(IDbContext context, Logger logger, ApplicationService applicationService, EmailLogService emailLogService) { _ctx = context; _logger = logger; _applicationService = applicationService; _emailLogService = emailLogService; }
public EmailService(IDbContext context, Logger logger) { _ctx = context; _logger = logger; _applicationService = new ApplicationService(_ctx); _emailLogService = new EmailLogService(_ctx); }
public EmailService(IDbContext context) { _ctx = context; _logger = LogManager.GetCurrentClassLogger(); _applicationService = new ApplicationService(_ctx); _emailLogService = new EmailLogService(_ctx); }