示例#1
0
 protected Book CreateBookWithTargetGenre(string name, int fileSize, Book.PublisherInfo publisher, List <Book.AuthorInfo> authors, FileExtensions extension)
 => new Book()
 {
     Name = name, FileSize = fileSize, Publisher = publisher, Authors = authors, Genre = TargetGenre, Extension = extension
 };
示例#2
0
 public override Book CreateDJVUBook(string name, int fileSize, Book.PublisherInfo publisher, List <Book.AuthorInfo> authors)
 => CreateBookWithTargetGenre(name, fileSize, publisher, authors, FileExtensions.djvu);
示例#3
0
 public abstract Book CreateDJVUBook(string name, int fileSize, Book.PublisherInfo publisher, List <Book.AuthorInfo> authors);