public function handle(SetCartTaxRateByZip5AndStateCommand $command)
 {
     $taxRate = $this->taxRateService->findByZip5AndState($command->getZip5(), $command->getState());
     $this->cartService->setTaxRate($command->getCartId(), $taxRate);
 }