public ChannelUsersNodeNoticeHandler(NodeNotice notice, NodeConnection current, ICreateChannelsService createChannelsService, INodeRequestSender nodeRequestSender, ICrossNodeService crossNodeService)
 {
     this.notice  = (ChannelUsersNodeNotice)notice;
     this.current = current;
     this.createChannelsService = createChannelsService;
     this.nodeRequestSender     = nodeRequestSender;
     this.crossNodeService      = crossNodeService;
 }
Пример #2
0
 public GetChatUsersRequestHandler(
     Request request, ClientConnection clientConnection, ILoadChatsService loadChatsService,
     IPrivacyService privacyService, IConnectionsService connectionsService, INodeRequestSender nodeRequestSender, ICrossNodeService crossNodeService)
 {
     this.request            = (GetChatUsersRequest)request;
     this.clientConnection   = clientConnection;
     this.loadChatsService   = loadChatsService;
     this.privacyService     = privacyService;
     this.connectionsService = connectionsService;
     this.nodeRequestSender  = nodeRequestSender;
     this.crossNodeService   = crossNodeService;
 }
 public NewChatsNoticeHandler(
     CommunicationObject @object,
     NodeConnection nodeConnection,
     INodeNoticeService nodeNoticeService,
     IConversationsNoticeService conversationsNoticeService,
     ICrossNodeService crossNodeService)
 {
     notice = (CreateOrEditChatsNodeNotice)@object;
     this.nodeConnection             = nodeConnection;
     this.nodeNoticeService          = nodeNoticeService;
     this.conversationsNoticeService = conversationsNoticeService;
     this.crossNodeService           = crossNodeService;
 }
 public AddUsersChatNoticeHandler(NodeNotice notice,
                                  NodeConnection node,
                                  IConversationsNoticeService conversationsNoticeService,
                                  IUpdateChatsService updateChatsService,
                                  INodeRequestSender nodeRequestSender,
                                  ICrossNodeService crossNodeService,
                                  ISystemMessagesService systemMessagesService)
 {
     this.notice = (AddUsersChatNodeNotice)notice;
     this.node   = node;
     this.conversationsNoticeService = conversationsNoticeService;
     this.updateChatsService         = updateChatsService;
     this.nodeRequestSender          = nodeRequestSender;
     this.crossNodeService           = crossNodeService;
     this.systemMessagesService      = systemMessagesService;
 }
 public EditChatsNoticeHandler(
     CommunicationObject @object,
     NodeConnection nodeConnection,
     INodeNoticeService nodeNoticeService,
     IConversationsNoticeService conversationsNoticeService,
     ILoadChatsService loadChatsService,
     ICrossNodeService crossNodeService,
     ISystemMessagesService systemMessagesService)
 {
     notice = (CreateOrEditChatsNodeNotice)@object;
     this.nodeConnection             = nodeConnection;
     this.nodeNoticeService          = nodeNoticeService;
     this.conversationsNoticeService = conversationsNoticeService;
     this.loadChatsService           = loadChatsService;
     this.crossNodeService           = crossNodeService;
     this.systemMessagesService      = systemMessagesService;
 }
Пример #6
0
 public NewMessagesNoticeHandler(CommunicationObject @object,
                                 NodeConnection current,
                                 IConversationsNoticeService conversationsNoticeService,
                                 IAttachmentsService attachmentsService,
                                 ICreateMessagesService createMessagesService,
                                 ICreateChannelsService createChannelsService,
                                 INodeRequestSender nodeRequestSender,
                                 ICrossNodeService crossNodeService,
                                 ILoadDialogsService loadDialogsService)
 {
     notice       = (NewMessagesNodeNotice)@object;
     this.current = current;
     this.conversationsNoticeService = conversationsNoticeService;
     this.attachmentsService         = attachmentsService;
     this.createMessagesService      = createMessagesService;
     this.createChannelsService      = createChannelsService;
     this.nodeRequestSender          = nodeRequestSender;
     this.crossNodeService           = crossNodeService;
     this.loadDialogsService         = loadDialogsService;
 }
Пример #7
0
 public NewUsersNoticeHandler(CommunicationObject @object, NodeConnection current, ICrossNodeService crossNodeService)
 {
     notice = (CreateOrEditUsersNodeNotice)@object;
     this.crossNodeService = crossNodeService;
     this.current          = current;
 }
Пример #8
0
 public ChatsNodeResponseHandler(NodeResponse response, NodeConnection nodeConnection, ICrossNodeService crossNodeService)
 {
     this.response         = (ChatsNodeResponse)response;
     this.crossNodeService = crossNodeService;
     this.nodeConnection   = nodeConnection;
 }
Пример #9
0
 public EditUsersNoticeHandler(CommunicationObject @object, NodeConnection nodeConnection, ICrossNodeService crossNodeService)
 {
     notice = (CreateOrEditUsersNodeNotice)@object;
     this.nodeConnection   = nodeConnection;
     this.crossNodeService = crossNodeService;
 }
Пример #10
0
 public NewNodesNoticeHandler(CommunicationObject @object, NodeConnection nodeConnection, ICrossNodeService crossNodeService)
 {
     notice = (NewOrEditNodesNodeNotice)@object;
     this.nodeConnection   = nodeConnection;
     this.crossNodeService = crossNodeService;
 }