示例#1
0
 public ScheduledEmailService(IScheduledEmailRepository scheduledEmailRepository,
                              IUnitOfWork unitOfWork)
     : base(scheduledEmailRepository, unitOfWork)
 {
 }
示例#2
0
 public ScheduledEmailService(IScheduledEmailRepository scheduledEmailRepository, IEmailNotificationService emailNotificationService, IPersonRepository personRepository)
 {
     _scheduledEmailRepository = scheduledEmailRepository;
     _emailNotificationService = emailNotificationService;
     _personRepository         = personRepository;
 }