Ejemplo n.º 1
0
 public GroupUserService(
     IAuthorizedUserHelper authorizedUserHelper,
     IGroupUserRepository groupUserRepository,
     IGroupUserStore groupUserStore,
     IGroupEventService groupEventService,
     IGroupRepository groupRepository,
     IChannelEventService channelEventService,
     IChannelUserRepository channelUserRepository,
     IChannelUserStore channelUserStore,
     IChatEventService chatEventService,
     IChatUserRepository chatUserRepository,
     IChatUserStore chatUserStore,
     IChatService chatService,
     IUserRepository userRepository,
     IMailService mailService,
     IMapper mapper
     )
 {
     _groupUserRepository   = groupUserRepository;
     _groupUserStore        = groupUserStore;
     _groupEventService     = groupEventService;
     _groupRepository       = groupRepository;
     _channelEventService   = channelEventService;
     _channelUserRepository = channelUserRepository;
     _channelUserStore      = channelUserStore;
     _chatUserRepository    = chatUserRepository;
     _chatUserStore         = chatUserStore;
     _chatEventService      = chatEventService;
     _chatService           = chatService;
     _userRepository        = userRepository;
     _mailService           = mailService;
     _mapper         = mapper;
     _authorizedUser = authorizedUserHelper.GetAuthorizedUser();
 }
Ejemplo n.º 2
0
 public ChatMessageService(
     IChatUserStore chatUserStore,
     IMessageStore messageStore,
     IMapper mapper)
 {
     _chatUserStore = chatUserStore;
     _messageStore  = messageStore;
     _mapper        = mapper;
 }
Ejemplo n.º 3
0
 public ChatUserSeeder(
     IChatEventService chatEventService,
     IChatUserStore chatUserStore,
     IChatUserRepository chatUserRepository,
     IGroupRepository groupRepository)
 {
     _chatEventService   = chatEventService;
     _chatUserStore      = chatUserStore;
     _chatUserRepository = chatUserRepository;
     _groupRepository    = groupRepository;
 }