Ejemplo n.º 1
0
 public Book(string pathToFile, string title, Genres genre, Langs lang, string paperFormat, string publisher, DateTime dateOfPublished)
     : base(pathToFile, title, genre, lang, paperFormat, publisher, dateOfPublished)
 {
 }
Ejemplo n.º 2
0
 public Magazine(string name, string publisher, int year, Genres genre, Rating rating, string issue)
     : base(name, publisher, year, genre, rating)
 {
     this.Issue = issue;
 }
Ejemplo n.º 3
0
 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));
 }
Ejemplo n.º 4
0
 public Book(string name, string publisher, int year, Genres genre, Rating rating, string author)
     : base(name, publisher, year, genre, rating)
 {
     this.Author = author;
 }