Exemplo n.º 1
0
 public GetCommunicationChannelRolesForUserInChannelQueryHandler(IMapper mapper, IUserRepository userRepository, ICommunicationChannelRepository communicationChannelRepository, ICommunicationChannelRoleRepository communicationChannelRoleRepository)
 {
     _mapper         = mapper;
     _userRepository = userRepository;
     _communicationChannelRepository     = communicationChannelRepository;
     _communicationChannelRoleRepository = communicationChannelRoleRepository;
 }
 public AddUserToCommunicationChannelCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelRepository communicationChannelRepository, IUserRepository userRepository, IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelRepository = communicationChannelRepository;
     _userRepository = userRepository;
     _mapper         = mapper;
 }
Exemplo n.º 3
0
 public CreateCommunicationChannelCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelRepository communicationChannelRepository, ICurrentUserService currentUserService, IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelRepository = communicationChannelRepository;
     _currentUserService             = currentUserService;
     _mapper = mapper;
 }
Exemplo n.º 4
0
 public CreateCommunicationChannelMessageCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelRepository communicationChannelRepository, ICommunicationChannelMessageRepository communicationChannelMessageRepository, IUserRepository userRepository, IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelRepository        = communicationChannelRepository;
     _communicationChannelMessageRepository = communicationChannelMessageRepository;
     _userRepository = userRepository;
     _mapper         = mapper;
 }
 public GetCommunicationChannelByIdQueryHandler(IMapper mapper, ICommunicationChannelRepository communicationChannelRepository)
 {
     _mapper = mapper;
     _communicationChannelRepository = communicationChannelRepository;
 }
Exemplo n.º 6
0
 public CreateCommunicationChannelRoleCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelRepository communicationChannelRepository, ICommunicationChannelRoleRepository communicationChannelRoleRepository)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelRepository     = communicationChannelRepository;
     _communicationChannelRoleRepository = communicationChannelRoleRepository;
 }
Exemplo n.º 7
0
 public GetCommunicationChannelCalendarEventsForUserQueryHandler(IMapper mapper, ICommunicationChannelCalendarEventRepository communicationChannelCalendarEventRepository, ICommunicationChannelRepository communicationChannelRepository)
 {
     _mapper = mapper;
     _communicationChannelCalendarEventRepository = communicationChannelCalendarEventRepository;
     _communicationChannelRepository = communicationChannelRepository;
 }
 public UpdateCommunicationChannelCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelRepository communicationChannelRepository)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelRepository = communicationChannelRepository;
 }