コード例 #1
0
 public ProductQueryHandler(DddExampleContext architectureContext)
 {
     _architectureContext = architectureContext;
 }
 public OderItemQueryHandler(DddExampleContext architectureContext, IUser user)
 {
     _architectureContext = architectureContext;
     _user = user;
 }
コード例 #3
0
 public CustomerQueryHandler(DddExampleContext architectureContext)
 {
     _architectureContext = architectureContext;
 }
コード例 #4
0
 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)
 {
 }
コード例 #6
0
 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;
 }