コード例 #1
0
 public NotificationSender(
     IMailService mailService,
     INotificationBodyBuilder notificationBodyBuilder,
     INotificationReceiverRepository notificationReceiverRepository)
 {
     _mailService                    = mailService;
     _notificationBodyBuilder        = notificationBodyBuilder;
     _notificationReceiverRepository = notificationReceiverRepository;
 }
コード例 #2
0
 public NotificationReceiverService(
     INotificationReceiverRepository notificationReceiverRepository,
     IMapper mapper)
     : base(notificationReceiverRepository, mapper)
 {
 }