Пример #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();
 }
Пример #2
0
 public ChannelUserSeeder(
     IChannelEventService channelEventService,
     IChannelUserStore channelUserStore,
     IChannelUserRepository channelUserRepository,
     IGroupRepository groupRepository)
 {
     _channelEventService   = channelEventService;
     _channelUserStore      = channelUserStore;
     _channelUserRepository = channelUserRepository;
     _groupRepository       = groupRepository;
 }
Пример #3
0
 public ChannelSeeder(
     IChannelEventService channelEventService,
     IChannelUserRepository channelUserRepository,
     IChannelRepository channelRepository,
     IGroupRepository groupRepository,
     IUserRepository userRepository)
 {
     _channelEventService   = channelEventService;
     _channelUserRepository = channelUserRepository;
     _channelRepository     = channelRepository;
     _groupRepository       = groupRepository;
     _userRepository        = userRepository;
 }
Пример #4
0
 public ChannelService(
     IAuthorizedUserHelper authorizedUserHelper,
     IGroupRepository groupRepository,
     IChannelUserRepository channelUserRepository,
     IChannelEventService channelEventService,
     IChannelUserStore channelUserStore,
     IChannelRepository channelRepository,
     IMapper mapper
     )
 {
     _groupRepository       = groupRepository;
     _channelUserRepository = channelUserRepository;
     _channelEventService   = channelEventService;
     _authorizedUser        = authorizedUserHelper.GetAuthorizedUser();
     _channelUserStore      = channelUserStore;
     _channelRepository     = channelRepository;
     _mapper = mapper;
 }
Пример #5
0
 public HomeController(IChannelEventService channelEventService)
 {
     _channelEventService = channelEventService;
 }