示例#1
0
 public Book(string title, TypeOfEdition typeOfEdition, int numberOfPages)
 {
     Title         = title;
     TypeOfEdition = typeOfEdition;
     NumberOfPages = numberOfPages;
     ISBN          = GenerateISBN();
     ID            = GenerateID();
 }
示例#2
0
 public Novel(string author, string title, TypeOfEdition typeOfEdition, int numberOfPages) : base(title, typeOfEdition, numberOfPages)
 {
     Author = author;
 }
 public StoryCollections(string author, string title, TypeOfEdition typeOfEdition, int numberOfPages) : base(title, typeOfEdition, numberOfPages)
 {
     Author = author;
 }
示例#4
0
 public Anthology(string editor, string title, TypeOfEdition typeOfEdition, int numberOfPages) : base(title, typeOfEdition, numberOfPages)
 {
     Editor = editor;
     //  Theme = theme;
 }