示例#1
0
 public function __construct(\Models\Book $book)
 {
     $this->bianhao = $book->GetBianHao();
     $this->title = $book->GetTitle();
     $this->author = $book->GetAuthor();
     $this->publisher = $book->getPublisher();
     $this->publishedDate = $book->getPublishedDate();
     $this->language = $book->getLanguage();
     $this->printLength = $book->getPrintLength();
     $this->ISBN = $book->getISBN();
     $this->bookDescription = $book->GetDescription();
     $this->price = $book->getPrice();
 }