public GetCommunicationChannelMessagesForUserInChannelQueryHandler(IMapper mapper, IUserRepository userRepository, ICommunicationChannelRepository communicationChannelRepository, ICommunicationChannelMessageRepository communicationChannelMessageRepository)
 {
     _mapper         = mapper;
     _userRepository = userRepository;
     _communicationChannelRepository        = communicationChannelRepository;
     _communicationChannelMessageRepository = communicationChannelMessageRepository;
 }
コード例 #2
0
 public CreateCommunicationChannelMessageCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelRepository communicationChannelRepository, ICommunicationChannelMessageRepository communicationChannelMessageRepository, IUserRepository userRepository, IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelRepository        = communicationChannelRepository;
     _communicationChannelMessageRepository = communicationChannelMessageRepository;
     _userRepository = userRepository;
     _mapper         = mapper;
 }
コード例 #3
0
 public DeleteCommunicationChannelMessageCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelMessageRepository communicationChannelMessageRepository)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelMessageRepository = communicationChannelMessageRepository;
 }
コード例 #4
0
 public GetCommunicationChannelMessageByIdQueryHandler(IMapper mapper, ICommunicationChannelMessageRepository communicationChannelMessageRepository)
 {
     _mapper = mapper;
     _communicationChannelMessageRepository = communicationChannelMessageRepository;
 }
 public CreateCommunicationChannelMessageAttachmentCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelMessageAttachmentRepository communicationChannelMessageAttachmentRepository, ICommunicationChannelMessageRepository communicationChannelMessageRepository)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelMessageAttachmentRepository = communicationChannelMessageAttachmentRepository;
     _communicationChannelMessageRepository           = communicationChannelMessageRepository;
 }