public ListCommandHandler(
     ArchCoreContext architectureContext,
     EventSourcingCoreContext eventSourcingContext,
     IDomainNotification notifications)
 {
     _architectureContext  = architectureContext;
     _eventSourcingContext = eventSourcingContext;
     _notifications        = notifications;
 }
 public OrderCommandHandler(
     ArchCoreContext architectureContext,
     IDomainNotification notifications,
     IEventRepository eventRepository,
     EventSourcingCoreContext eventSourcingContext,
     AuthService authService)
     : base(architectureContext, notifications, eventRepository, eventSourcingContext, authService)
 {
     _architectureContext = architectureContext;
 }
 protected CommandHandler(
     ArchCoreContext architectureContext, IDomainNotification notifications, IEventRepository eventRepository,
     EventSourcingCoreContext eventSourcingContext, AuthService authService)
 {
     _architectureContext  = architectureContext;
     _notifications        = notifications;
     _eventRepository      = eventRepository;
     _eventSourcingContext = eventSourcingContext;
     _authService          = authService;
 }
 public EventRespoitory(EventSourcingCoreContext eventSourcingContext)
 {
     _eventSourcingContext = eventSourcingContext;
 }
Exemple #5
0
 public EventSourcingCommandHandler(EventSourcingCoreContext eventSourcingContext) =>
Exemple #6
0
 public EntityByUserQueryHandler(EventSourcingCoreContext eventSourcingContext)
 {
     _eventSourcingContext = eventSourcingContext;
 }
Exemple #7
0
 public CustomerQueryHandler(ArchCoreContext architectureContext, EventSourcingCoreContext eventSourcingContext)
 {
     _architectureContext  = architectureContext;
     _eventSourcingContext = eventSourcingContext;
 }