public GetNotificationDefQueryHandler(
     INotificationDefQueryRepository notificationDefQueryRepository,
     ILogger <GetNotificationDefQueryHandler> logger)
 {
     _notificationDefQueryRepository = notificationDefQueryRepository;
     _logger = logger;
 }
 public AddNotificationDefCommandHandler(
     ILogger <AddNotificationDefCommandHandler> logger,
     INotificationDefQueryRepository notificationDefQueryRepository,
     INotificationDefCommandRepository notificationDefCommandRepository)
 {
     _logger = logger;
     _notificationDefQueryRepository   = notificationDefQueryRepository;
     _notificationDefCommandRepository = notificationDefCommandRepository;
 }
 public DeleteNotificationDefPeopleAssignmentCommandHandler(
     ILogger <DeleteNotificationDefPeopleAssignmentCommandHandler> logger,
     INotificationDefQueryRepository notificationDefQueryRepository,
     INotificationDefCommandRepository notificationDefCommandRepository)
 {
     _logger = logger;
     _notificationDefQueryRepository   = notificationDefQueryRepository;
     _notificationDefCommandRepository = notificationDefCommandRepository;
 }
Example #4
0
 public UpdateNotificationDefInfoCommandHandler(
     ILogger <UpdateNotificationDefInfoCommandHandler> logger,
     INotificationDefQueryRepository notificationDefQueryRepository,
     INotificationDefCommandRepository notificationDefCommandRepository)
 {
     _logger = logger;
     _notificationDefQueryRepository   = notificationDefQueryRepository;
     _notificationDefCommandRepository = notificationDefCommandRepository;
 }
Example #5
0
 public CreateNotificationInstanceCommandHandler(
     ILogger <CreateNotificationInstanceCommandHandler> logger,
     INotificationDefQueryRepository notificationDefQueryRepository,
     INotificationInstanceCommandRepository notificationInstanceCommandRepository,
     IParameterParser parameterParser)
 {
     _logger = logger;
     _notificationDefQueryRepository        = notificationDefQueryRepository;
     _notificationInstanceCommandRepository = notificationInstanceCommandRepository;
     _parameterParser = parameterParser;
 }
 public DeleteNotificationDefPresentationParameterCommandHandler(ILogger <DeleteNotificationDefPresentationParameterCommandHandler> logger, INotificationDefQueryRepository notificationDefQueryRepository, INotificationDefCommandRepository notificationDefCommandRepository)
 {
     _logger = logger;
     _notificationDefQueryRepository   = notificationDefQueryRepository;
     _notificationDefCommandRepository = notificationDefCommandRepository;
 }
 public SearchNotificationDefQueryHandler(INotificationDefQueryRepository notificationDefQueryRepository)
 {
     _notificationDefQueryRepository = notificationDefQueryRepository;
 }
 public GetAllNotificationDefQueryHandler(INotificationDefQueryRepository notificationDefQueryRepository)
 {
     _notificationDefQueryRepository = notificationDefQueryRepository;
 }