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