public function buildAndAddProduct($name = null, $code = null, $quantity = null, $info = null, $price = null, $version = null, $vat = null, $priceType = null)
{
$this->basket->add(new Product($name, $code, $quantity, $info, $price, $version, $vat, $priceType));
return $this;
}