Exemple #1
0
 public NotifierBase(TChatNotificationsConfiguration chatNotificationsConfiguration, INotificationSender notificationSender, INotificationRouteService notificationRouteService)
 {
     ChatNotificationsConfiguration = chatNotificationsConfiguration;
     NotificationSender             = notificationSender;
     NotificationRouteService       = notificationRouteService;
 }
Exemple #2
0
 public ChatMessageNotifier(TChatNotificationsConfiguration chatNotificationsConfiguration, INotificationSender notificationSender, INotificationRouteService notificationRouteService, IChatMessagesNotificationBuilder <TChatInfo, TChatUser, TChatMessage, TChatMessageInfo, TTextMessage, TQuoteMessage, TMessageAttachmentCollection, TMessageAttachment, TChatRefMessageCollection, TChatRefMessage, TContactMessageCollection, TContactMessage> chatMessagesNotificationBuilder) : base(chatNotificationsConfiguration, notificationSender, notificationRouteService)
 {
     ChatMessagesNotificationBuilder = chatMessagesNotificationBuilder;
 }
Exemple #3
0
 public ChatMessageNotifier(ChatNotificationsConfiguration chatNotificationsConfiguration, INotificationSender notificationSender, INotificationRouteService notificationRouteService, IChatMessagesNotificationBuilder <ChatInfo, ChatUser, ChatMessage, ChatMessageInfo, TextMessage, QuoteMessage, List <MessageAttachment>, MessageAttachment, List <ChatRefMessage>, ChatRefMessage, List <ContactMessage>, ContactMessage> chatMessagesNotificationBuilder) : base(chatNotificationsConfiguration, notificationSender, notificationRouteService, chatMessagesNotificationBuilder)
 {
 }
 public ChatParticipantNotifier(ChatNotificationsConfiguration chatNotificationsConfiguration, INotificationSender notificationSender, INotificationRouteService notificationRouteService, IChatParticipantsNotificationBuilder <List <ParticipationResult>, ParticipationResult, ChatParticipant> chatParticipantsNotificationBuilder) : base(chatNotificationsConfiguration, notificationSender, notificationRouteService, chatParticipantsNotificationBuilder)
 {
 }
 public ChatParticipantNotifier(TChatNotificationsConfiguration chatNotificationsConfiguration, INotificationSender notificationSender, INotificationRouteService notificationRouteService, IChatParticipantsNotificationBuilder <TParticipationResultCollection, TParticipationResult, TChatParticipant> chatParticipantsNotificationBuilder) : base(chatNotificationsConfiguration, notificationSender, notificationRouteService)
 {
     ChatParticipantsNotificationBuilder = chatParticipantsNotificationBuilder;
 }