public GetNotificationProfileListQueryHandler(INotificationProfileService service, IGearContext context) { _service = service; _context = context; }
public UpdateNotificationProfileCommandHandler(INotificationProfileService service) { _service = service; }
public GetNotificationProfileDetailQueryHandler(INotificationProfileService notificationProfileService, IGearContext context, IEventService eventService) { _notificationProfileService = notificationProfileService; _context = context; _eventService = eventService; }
public AssignUserNotificationProfileCommandHandler(INotificationProfileService service) { _service = service; }