示例#1
0
 public CreateCommunicationChannelCalendarEventCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelCalendarEventRepository communicationChannelCalendarEventRepository, ICurrentUserService currentUserService, IMapper mapper, ICommunicationChannelRepository communicationChannelRepository)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelCalendarEventRepository = communicationChannelCalendarEventRepository;
     _currentUserService             = currentUserService;
     _mapper                         = mapper;
     _communicationChannelRepository = communicationChannelRepository;
 }
示例#2
0
 public GetCommunicationChannelCalendarEventByIdQueryHandler(IMapper mapper, ICommunicationChannelCalendarEventRepository communicationChannelCalendarEventRepository, ICurrentUserService currentUserService)
 {
     _mapper = mapper;
     _communicationChannelCalendarEventRepository = communicationChannelCalendarEventRepository;
     _currentUserService = currentUserService;
 }
示例#3
0
 public GetCommunicationChannelCalendarEventsForUserQueryHandler(IMapper mapper, ICommunicationChannelCalendarEventRepository communicationChannelCalendarEventRepository, ICommunicationChannelRepository communicationChannelRepository)
 {
     _mapper = mapper;
     _communicationChannelCalendarEventRepository = communicationChannelCalendarEventRepository;
     _communicationChannelRepository = communicationChannelRepository;
 }
 public UpdateCommunicationChannelCalendarEventCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelCalendarEventRepository communicationChannelCalendarEventRepository, ICurrentUserService currentUserService)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelCalendarEventRepository = communicationChannelCalendarEventRepository;
     _currentUserService = currentUserService;
 }
示例#5
0
 public DeleteCommunicationChannelCalendarEventCommandHandler(IUnitOfWork unitOfWork, ICommunicationChannelCalendarEventRepository communicationChannelCalendarEventRepository)
 {
     _unitOfWork = unitOfWork;
     _communicationChannelCalendarEventRepository = communicationChannelCalendarEventRepository;
 }