public CustomerCommandHandler(IOrderWriteDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 2
0
 public OrderCommandHandler(IOrderWriteDbContext dbContext, INotificationService notificationService)
 {
     _dbContext           = dbContext;
     _notificationService = notificationService;
 }
 public ProductCommandHandler(IOrderWriteDbContext dbContext)
 {
     _dbContext = dbContext;
 }