コード例 #1
0
ファイル: WorkTime.php プロジェクト: wwsh/gastro-api
 /**
  * Remove bill
  *
  * @param \WW\Gastro\ApiBundle\Entity\Bill $bill
  */
 public function removeBill(\WW\Gastro\ApiBundle\Entity\Bill $bill)
 {
     $this->bills->removeElement($bill);
 }
コード例 #2
0
ファイル: Employee.php プロジェクト: wwsh/gastro-api
 /**
  * Remove worktime
  *
  * @param \WW\Gastro\ApiBundle\Entity\WorkTime $worktime
  */
 public function removeWorktime(\WW\Gastro\ApiBundle\Entity\WorkTime $worktime)
 {
     $this->worktimes->removeElement($worktime);
 }