From 181aaf7773c9a3c503559b4238af67ef2ef0577d Mon Sep 17 00:00:00 2001 From: Drake Date: Thu, 20 Mar 2014 19:10:47 -0400 Subject: [PATCH] Book Entity --- 2014-03-20/src/Book.php | 166 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 166 insertions(+) diff --git a/2014-03-20/src/Book.php b/2014-03-20/src/Book.php index 63e2e76..1990b59 100644 --- a/2014-03-20/src/Book.php +++ b/2014-03-20/src/Book.php @@ -1,4 +1,170 @@ _author = $author; + } + + /** + * @return mixed + */ + public function getAuthor() + { + return $this->_author; + } + + /** + * @param mixed $description + */ + public function setDescription($description) + { + $this->_description = $description; + } + + /** + * @return mixed + */ + public function getDescription() + { + return $this->_description; + } + + /** + * @param mixed $genre + */ + public function setGenre($genre) + { + $this->_genre = $genre; + } + + /** + * @return mixed + */ + public function getGenre() + { + return $this->_genre; + } + + /** + * @param mixed $id + */ + public function setId($id) + { + $this->_id = $id; + } + + /** + * @return mixed + */ + public function getId() + { + return $this->_id; + } + + /** + * @param mixed $price + */ + public function setPrice($price) + { + $this->_price = $price; + } + + /** + * @return mixed + */ + public function getPrice() + { + return $this->_price; + } + + /** + * @param mixed $publishDate + */ + public function setPublishDate($publishDate) + { + $this->_publishDate = $publishDate; + } + + /** + * @return mixed + */ + public function getPublishDate() + { + return $this->_publishDate; + } + + /** + * @param mixed $title + */ + public function setTitle($title) + { + $this->_title = $title; + } + + /** + * @return mixed + */ + public function getTitle() + { + return $this->_title; + } + + /** + * @param mixed $url + */ + public function setUrl($url) + { + $this->_url = $url; + } + + /** + * @return mixed + */ + public function getUrl() + { + return $this->_url; + } + }