Example #1
0
 public StoryCollection(int id, string title, TypesOfEdition types, int numberOfPages, string author)
 {
     ID            = id;
     Title         = title;
     Types         = types;
     NumberOfPages = numberOfPages;
     Author        = author;
     ISBN          = GenerateISBN();
 }
Example #2
0
 public Anthology(int id, string title, TypesOfEdition types, int numberOfPages, string editor)
 {
     ID            = id;
     Title         = title;
     Types         = types;
     NumberOfPages = numberOfPages;
     Editor        = editor;
     ISBN          = GenerateISBN();
 }