/
var
/
www
/
html
/
boaz
/
src
/
Repository
/
Upload File
HOME
<?php namespace App\Repository; /** * SubcargoRepository * * This class was generated by the Doctrine ORM. Add your own custom * repository methods below. */ class SubcargoRepository extends \Doctrine\ORM\EntityRepository { public function findByCargoId($id) { return $this->getEntityManager() ->createQuery( 'SELECT sc FROM App\Entity\Subcargo sc WHERE sc.cargoId = ' . $id )->getResult(); } }