/**
* Returns the \Doctrine\ORM\Query to select the manufacturer detail information based on the manufacturer id
* Used for detail information in the backend module.
*
* @param int $manufacturerId
*
* @return Query<Supplier>
*/
public function getDetailQuery($manufacturerId) { return $this->
getDetailQueryBuilder($manufacturerId)->
getQuery();
} /**
* Helper function to create the query builder for the "getDetailQuery" function.
* This function can be hooked to modify the query builder of the query object.
*
* @param int $manufacturerId
*
* @return QueryBuilder
*/
public function getDetailQueryBuilder($manufacturerId) {