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 CsvQueryHandler(ArchCoreContext architectureContext)
 {
     _architectureContext = architectureContext;
 }
示例#5
0
 public ProductCommandHandler(ArchCoreContext context)
 {
     _context = context;
 }
 public OrderItemCommandHandler(ArchCoreContext architectureContext)
 {
     _architectureContext = architectureContext;
 }
示例#7
0
 public UserHandler(ArchCoreContext archDbContext)
 {
     _archDbContext = archDbContext;
 }
 public ProductQueryHandler(ArchCoreContext context) => _context = context;
 public CartCommandHandler(ArchCoreContext context)
 {
     _context = context;
 }
示例#10
0
 public OderItemQueryHandler(ArchCoreContext architectureContext)
 {
     _architectureContext = architectureContext;
 }
示例#11
0
 public CustomerQueryHandler(ArchCoreContext architectureContext, EventSourcingCoreContext eventSourcingContext)
 {
     _architectureContext  = architectureContext;
     _eventSourcingContext = eventSourcingContext;
 }