public PretendApplication(
     IShipmentReadModelRepository shipmentReadModelRepository,
     ICommandDispatcher commandDispatcher,
     EventConsumer eventConsumer)
 {
     ShipmentReadModelRepository = shipmentReadModelRepository;
     _commandDispatcher          = commandDispatcher;
     EventConsumer = eventConsumer;
 }
 public ShipmentEventHandler(IShipmentReadModelRepository repository)
 {
     _repository = repository;
 }