Inheritance: implements Dumplie\SharedKernel\Application\Command\Command, use trait Dumplie\SharedKernel\Application\Command\CommandSerialize
 /**
  * @param RemoveProductFromStock $command
  * @throws ProductNotFound
  */
 public function handle(RemoveProductFromStock $command)
 {
     $product = $this->products->getBySku(new SKU($command->sku()));
     $product->removeFromStock();
 }