示例#1
0
 protected ChatParticipantsWorker(TChatWorkersConfiguration chatWorkersConfiguration, IChatParticipantsPermissionValidator <TParticipationCandidateCollection, TParticipationCandidate> chatParticipantsPermissionValidator, IChatParticipantStore <TChatParticipant, TChatUser> chatParticipantStore, IReadUserStore <TChatUser> readUserStore, IChatParticipantsEventBuilder <TParticipationResultCollection, TParticipationResult, TChatParticipant> chatParticipantsEventBuilder) : base(chatWorkersConfiguration)
 {
     ChatParticipantsPermissionValidator = chatParticipantsPermissionValidator;
     ChatParticipantStore         = chatParticipantStore;
     ReadUserStore                = readUserStore;
     ChatParticipantsEventBuilder = chatParticipantsEventBuilder;
 }
示例#2
0
 public ChatsPermissionValidator(IReadChatParticipantStore <TChatParticipant> readChatParticipantStore, IReadUserStore <TChatUser> readUserStore)
 {
     ReadChatParticipantStore = readChatParticipantStore;
     ReadUserStore            = readUserStore;
 }
示例#3
0
 public ChatsPermissionValidator(IReadChatParticipantStore <ChatParticipant> readChatParticipantStore, IReadUserStore <ChatUser> readUserStore) : base(readChatParticipantStore, readUserStore)
 {
 }
示例#4
0
 public ChatParticipantsWorker(ChatWorkersConfiguration chatWorkersConfiguration, IChatParticipantsPermissionValidator <List <ParticipationCandidate>, ParticipationCandidate> chatParticipantsPermissionValidator, IChatParticipantStore <ChatParticipant, ChatUser> chatParticipantStore, IReadUserStore <ChatUser> readUserStore, IChatParticipantsEventBuilder <List <ParticipationResult>, ParticipationResult, ChatParticipant> chatParticipantsEventBuilder) : base(chatWorkersConfiguration, chatParticipantsPermissionValidator, chatParticipantStore, readUserStore, chatParticipantsEventBuilder)
 {
 }