/**
  * Constructor
  * 
  * @param string $partitionKey
  * @param string $rowKey
  */
 public function __construct($partitionKey = 'Data', $rowKey = '')
 {
     if ($rowKey == '') {
         $rowKey = time();
     }
     parent::__construct($partitionKey, $rowKey);
 }
 /**
  * Constructor
  * 
  * @param string $partitionKey
  * @param string $rowKey
  */
 public function __construct()
 {
     $this->PartKey = 'Product';
     $this->Row = rand(0, time());
     parent::__construct('Product', $this->Row);
 }
 /**
  * Constructor
  * 
  * @param string $partitionKey
  * @param string $rowKey
  */
 public function __construct()
 {
     parent::__construct('Product', rand(0, time()));
 }
 /**
  * Constructor
  * 
  * @param string $partitionKey
  * @param string $rowKey
  */
 public function __construct($productRowKey)
 {
     $this->setPartitionKey($productRowKey);
     $this->setRowKey(rand(0, time()));
     parent::__construct($this->getPartitionKey(), $this->getRowKey());
 }
 /**
  * Constructor
  * 
  * @param string $partitionKey
  * @param string $rowKey
  */
 public function __construct($partitionKey, $rowKey)
 {
     parent::__construct($partitionKey, $rowKey);
 }