/**
  * Get specific Quotation by number
  * @param  integer $no
  * @return mixed
  */
 public function get($no)
 {
     $handle = $this->getHandle($no);
     return $this->client->Quotation_GetData(array('entityHandle' => $handle))->Quotation_GetDataResult;
 }