public function updateOrderSize($product, $orderSize = 0)
 {
     $returnValue = FALSE;
     if ($this->basketHandler->updateItemOrderSize($product, $orderSize)) {
         $returnValue = TRUE;
     }
     return $returnValue;
 }