示例#1
0
 public Book(Book source) {
   super();
   this.isbn = source.getIsbn();
   this.publishedDate = source.getPublishedDate();
   this.price = source.getPrice();
   this.createdDate = source.getCreatedDate();
   this.lastUpdated = source.getLastUpdated();
   this.title = source.getTitle();
   this.authors = source.getAuthors();
   this.description = source.getDescription();
   this.imageLargePath = source.getImageLargePath();
   this.imageMediumPath = source.getImageMediumPath();
   this.imageSmallPath = source.getImageSmallPath();
 }