public function isProductInCart($cartId, $productId)
 {
     $isInCart = $this->db->isProductInCart($cartId, $productId);
     return $isInCart;
 }