public MessagingManager(ICommunicationDispatcher <IMessage> messageCommunicationDispatcher, IRecipientManager recipientManager, IMessageBuilder messageBuilder, IUserProfileManager userProfileManager)
 {
     this._messageCommunicationDispatcher = messageCommunicationDispatcher;
     this._recipientManager   = recipientManager;
     this._messageBuilder     = messageBuilder;
     this._userProfileManager = userProfileManager;
 }
Пример #2
0
 public NotificationManager(IRecipientManager recipientManager, ICommunicationDispatcher <string> notificationCommunicationDispatcher, IUserProfileManager userProfileManager)
 {
     this._recipientManager = recipientManager;
     this._notificationCommunicationDispatcher = notificationCommunicationDispatcher;
     this._userProfileManager = userProfileManager;
 }