public ExpireSubscriptionsCommandHandler(
     ISqlConnectionFactory sqlConnectionFactory,
     ICommandsScheduler commandsScheduler)
 {
     _sqlConnectionFactory = sqlConnectionFactory;
     _commandsScheduler    = commandsScheduler;
 }
 public SubscriptionCreatedEnqueueEmailConfirmationHandler(
     ICommandsScheduler commandsScheduler,
     ISqlConnectionFactory sqlConnectionFactory)
 {
     _commandsScheduler    = commandsScheduler;
     _sqlConnectionFactory = sqlConnectionFactory;
 }
コード例 #3
0
 public MeetingFeePaymentPaidNotificationHandler(
     ICommandsScheduler commandsScheduler,
     IAggregateStore aggregateStore)
 {
     _commandsScheduler = commandsScheduler;
     _aggregateStore    = aggregateStore;
 }
 internal MeetingAttendeeAddedNotificationHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
コード例 #5
0
 public SubscriptionPaymentPaidNotificationHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
 public MeetingGroupProposalAcceptedIntegrationEventHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
コード例 #7
0
 public CustomerRegisteredNotificationHandler(
     ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
コード例 #8
0
 public PaymentCreatedNotificationHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
コード例 #9
0
 public MemberGeneralAttributesEditedIntegrationEventHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
 public MeetingGroupCreatedSendEmailHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
 internal MeetingGroupProposedIntegrationEventHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
コード例 #12
0
 public CreatePaymentScheduleAfterMeetingGroupProposalAcceptedHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
 internal MeetingAttendeeAddedIntegrationEventHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
コード例 #14
0
 public MemberSubscriptionExpirationDateChangedNotificationHandler(ISqlConnectionFactory sqlConnectionFactory, ICommandsScheduler commandsScheduler)
 {
     _sqlConnectionFactory = sqlConnectionFactory;
     _commandsScheduler    = commandsScheduler;
 }
コード例 #15
0
 public NewUserRegisteredIntegrationEventHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
コード例 #16
0
 public MeetingFeePaidIntegrationEventHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
コード例 #17
0
 public PaymentRegisteredIntegrationEventHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
 public NewUserRegisteredEnqueueEmailConfirmationHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
 internal MeetingGroupProposalAcceptedNotificationHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
 public UserRegistrationConfirmedNotificationHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }
 public SubscriptionExpirationDateChangedIntegrationEventHandler(ICommandsScheduler commandsScheduler)
 {
     _commandsScheduler = commandsScheduler;
 }