/**
* Convenience method to get a product by number
*
* @param string $number
*
* @return array|ProductModel
*/
public function getOneByNumber($number, array
$options =
[]) { $id =
$this->
getIdFromNumber($number);
return $this->
getOne($id,
$options);
} /**
* @param int $id
*
* @throws NotFoundException
* @throws ParameterMissingException
*
* @return array|ProductModel
*/
public function getOne($id, array
$options =
[]) {