Example #1
0
 /**
  * @return PubBeerRepository
  * @throws \DataBaseException
  * @throws \Exception
  */
 private function getPubBeers()
 {
     return $this->pubBeerDAL->getPubBeers();
 }
Example #2
0
 /**
  * @param PubBeer $pubBeer
  * @throws \DataBaseException
  */
 public function addPubBeer(PubBeer $pubBeer)
 {
     $this->pubBeerDAL->addPubBeer($pubBeer);
 }