public ScheduledEmailService(IScheduledEmailRepository scheduledEmailRepository, IUnitOfWork unitOfWork) : base(scheduledEmailRepository, unitOfWork) { }
public ScheduledEmailService(IScheduledEmailRepository scheduledEmailRepository, IEmailNotificationService emailNotificationService, IPersonRepository personRepository) { _scheduledEmailRepository = scheduledEmailRepository; _emailNotificationService = emailNotificationService; _personRepository = personRepository; }