public Book(string pathToFile, string title, Genres genre, Langs lang, string paperFormat, string publisher, DateTime dateOfPublished) : base(pathToFile, title, genre, lang, paperFormat, publisher, dateOfPublished) { }
public Magazine(string name, string publisher, int year, Genres genre, Rating rating, string issue) : base(name, publisher, year, genre, rating) { this.Issue = issue; }
public StorageInfo(string pathToFile, string title, Genres genre, Langs lang, string paperFormat, string publisher, DateTime dateOfPublished, List <Author> authors) { _authors = authors; _paperFormat = paperFormat; _pages = StorageReader.getPages(pathToFile, PaperStrogeStandarts.getPaperInfo(_paperFormat)); }
public Book(string name, string publisher, int year, Genres genre, Rating rating, string author) : base(name, publisher, year, genre, rating) { this.Author = author; }