예제 #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);