public SMSService(IDbContext context, Logger logger) { _ctx = context; _logger = logger; _applicationService = new ApplicationService(_ctx); _formattingServices = new FormattingServices(); _smsLogService = new SMSLogService(_ctx); }
public SMSService(IDbContext context) { _ctx = context; _logger = LogManager.GetCurrentClassLogger(); _applicationService = new ApplicationService(_ctx); _formattingServices = new FormattingServices(); _smsLogService = new SMSLogService(_ctx); }
public SMSService(ApplicationService applicationService, SMSLogService smsLogService, IDbContext context , Logger logger) { _applicationService = applicationService; _formattingServices = new FormattingServices(); _smsLogService = smsLogService; _ctx = context; _logger = logger; }