public UpdateOrderWhenBuyerAndPaymentMethodVerifiedSubscriber(IAggregateStore aggregateStore)
 {
     _aggregateStore = aggregateStore ?? throw new ArgumentNullException(nameof(aggregateStore));
 }
예제 #2
0
 public DeactivatePriceListItemCommandHandler(IAggregateStore aggregateStore)
 {
     _aggregateStore = aggregateStore;
 }
예제 #3
0
 internal MarkMeetingFeeAsPaidCommandHandler(IAggregateStore aggregateStore)
 {
     _aggregateStore = aggregateStore;
 }
예제 #4
0
 public CalendarApplicationService(IAggregateStore store)
 {
     _store = store;
 }
 public ClassifiedAdsApplicationService(IAggregateStore store)
 {
     _store = store;
 }
예제 #6
0
 public CreateMeetingFeeCommandHandler(
     IAggregateStore aggregateStore)
 {
     _aggregateStore = aggregateStore;
 }
예제 #7
0
 public CreateOrderCommandHandler(IAggregateStore aggregateStore,
                                  Now now)
     : base(aggregateStore) => _now = now;
예제 #8
0
 public Handler(ITelegramClient telegramClient, IAggregateStore aggregateStore)
 {
     _telegramClient = telegramClient;
     _aggregateStore = aggregateStore;
 }
예제 #9
0
 public BookingService(IAggregateStore store, StreamNameMap?streamNameMap = null)
     : base(store, streamNameMap: streamNameMap)
     => OnNew <BookRoom>(
 internal MarkSubscriptionRenewalPaymentAsPaidCommandHandler(IAggregateStore aggregateStore)
 {
     _aggregateStore = aggregateStore;
 }
 public ClassifiedAdsApplicationService(IAggregateStore store, Func <DateTimeOffset> getUtcNow, CheckTextForProfanity checkTextForProfanity)
 {
     _store                 = store;
     _getUtcNow             = getUtcNow;
     _checkTextForProfanity = checkTextForProfanity;
 }
예제 #12
0
 internal CreateMeetingFeePaymentCommandHandler(IAggregateStore aggregateStore)
 {
     _aggregateStore = aggregateStore;
 }
예제 #13
0
 public GetScannedAgreementHandler(IAggregateStore aggregateStore, IEventStore eventStore)
 {
     _aggregateStore = aggregateStore ?? throw new ArgumentNullException(nameof(aggregateStore));
     _eventStore     = eventStore ?? throw new ArgumentNullException(nameof(eventStore));
 }
예제 #14
0
 public TestService(IAggregateStore store) : base(store)
     => OnNew <DoIt>((test, cmd) => test.DoIt(new TestId(cmd.Id)));
 public AggregateStoreDomainEventsAccessor(IAggregateStore aggregateStore)
 {
     _aggregateStore = aggregateStore;
 }
예제 #16
0
 public RecordResignationHandler(IUserAccessor userAccessor, IAggregateStore aggregateStore, IClock clock)
 {
     _userAccessor   = userAccessor ?? throw new ArgumentNullException(nameof(userAccessor));
     _aggregateStore = aggregateStore ?? throw new ArgumentNullException(nameof(aggregateStore));
     _clock          = clock ?? throw new ArgumentNullException(nameof(clock));
 }
예제 #17
0
 public InMemoryUnitOfWork(IAggregateChangeTracker changeTracker,
                           IAggregateStore aggregateStore)
 {
     _changeTracker  = changeTracker ?? throw new ArgumentNullException(nameof(changeTracker));
     _aggregateStore = aggregateStore ?? throw new ArgumentNullException(nameof(aggregateStore));
 }
예제 #18
0
 public MeetingFeePaidNotificationHandler(IEventsBus eventsBus, IAggregateStore aggregateStore)
 {
     _eventsBus      = eventsBus;
     _aggregateStore = aggregateStore;
 }
 public EventStoreDayRepository(IAggregateStore aggregateStore)
 {
     _aggregateStore = aggregateStore;
 }
예제 #20
0
 public RoomOccupationStartedHandler(IAggregateStore store, IRoomRepository roomRepository)
 {
     this.roomRepository = roomRepository;
     this.store          = store;
 }
 public OrderStatusChangedToAwaitingValidationSubscriber(IAggregateStore aggregateStore, IPublishEndpoint endpoint)
 {
     _aggregateStore = aggregateStore;
     _endpoint       = endpoint;
 }
예제 #22
0
 public Repository(IAggregateStore aggregateStore, ISnapshotStore snapshotStore)
 {
     this.aggregateStore = aggregateStore;
     this.snapshotStore  = snapshotStore;
 }
예제 #23
0
파일: AddAccount.cs 프로젝트: FWTL/Auth
 public Handler(IAggregateStore aggregateStore, IGuidService guidService)
 {
     _aggregateStore = aggregateStore;
     _guidService    = guidService;
 }
예제 #24
0
 public AnimalUpdatedEventProcessor(IAggregateMutator <Animal> animalMutator,
                                    IAggregateStore <Animal> animalStore)
 {
     _animalMutator = animalMutator;
     _animalStore   = animalStore;
 }
예제 #25
0
 protected ApplicationService(IAggregateStore store) => _store = store;
        public Given_in_memory_aggregate_store()
        {
            UseThe(services => OrderContextIntegrationConfigurator.Configure(services));

            AggregateStore = The <IAggregateStore>();
        }
예제 #27
0
 public MeasuredStore(IAggregateStore store) => _store = store;
 public LocationHistoryQueryHandler(IAggregateStore aggregateStore)
 {
     _aggregateStore = aggregateStore;
 }
예제 #29
0
파일: RemoveSession.cs 프로젝트: FWTL/Auth
 public Handler(IAggregateStore aggregateStore, ITelegramClient telegramClient)
 {
     _aggregateStore = aggregateStore;
     _telegramClient = telegramClient;
 }
 public AddRoomIncidentRequestHandler(IAggregateStore store, IRoomRepository roomRepository, IEmployeeRepository employeeRepository)
 {
     _roomRepository     = roomRepository;
     _employeeRepository = employeeRepository;
     _store = store;
 }