public CustomerCommandHandler(IOrderWriteDbContext dbContext) { _dbContext = dbContext; }
public OrderCommandHandler(IOrderWriteDbContext dbContext, INotificationService notificationService) { _dbContext = dbContext; _notificationService = notificationService; }
public ProductCommandHandler(IOrderWriteDbContext dbContext) { _dbContext = dbContext; }