public ProductQueryHandler(DddExampleContext architectureContext) { _architectureContext = architectureContext; }
public OderItemQueryHandler(DddExampleContext architectureContext, IUser user) { _architectureContext = architectureContext; _user = user; }
public CustomerQueryHandler(DddExampleContext architectureContext) { _architectureContext = architectureContext; }
public OrderCommandHandler(DddExampleContext architectureContext, IDomainNotification notifications, IEventRepository eventRepository, IUser user) : base(architectureContext, notifications, eventRepository) { _architectureContext = architectureContext; _user = user; }
public ProductCommandHandler( DddExampleContext architectureContext, IDomainNotification notifications, IEventRepository eventRepository) : base(architectureContext, notifications, eventRepository) { }
protected CommandHandler(DddExampleContext architectureContext, IDomainNotification notifications, IEventRepository eventRepository) { _architectureContext = architectureContext; _notifications = notifications; _eventRepository = eventRepository; }
public CartCommandHandler(DddExampleContext context) { _context = context; }
public OrderItemCommandHandler(DddExampleContext architectureContext) { _architectureContext = architectureContext; }