public NotificationMessageService(INotificationMessageRepository notificationMessageRepository,
                                   ILogFactory logFactory, IEncryptionService encryptionService)
 {
     _notificationMessageRepository = notificationMessageRepository;
     _encryptionService             = encryptionService;
     _log = logFactory.CreateLog(this);
 }
Example #2
0
 public NotificationMessageService(INotificationMessageRepository notificationMessageRepository)
 {
     _notificationMessageRepository = notificationMessageRepository;
 }
Example #3
0
 public NotificationMessageService(IUnitOfWork unitOfWork, INotificationMessageRepository messageRepository)
 {
     _unitOfWork        = unitOfWork;
     _messageRepository = messageRepository;
 }