public function __construct(Product $product)
 {
     $this->id = $product->getId();
     $this->name = $product->getName();
     $this->description = $product->getDescription();
     $this->price = $product->getPrice();
     $this->categoryId = $product->getCategoryId();
     $this->quantity = $product->getQuantity();
     $this->dateListed = $product->getDateListed();
 }