Esempio n. 1
0
 internal void UpdateData(TextBookType bookType, string author, string name, int edition, string press, bool isBest)
 {
     BookType = bookType;
     Author   = author;
     Name     = name;
     Edition  = edition;
     Press    = press;
     IsBest   = isBest;
 }
Esempio n. 2
0
 internal void UpdateDataWithViews(TextBookType bookType, string author, string name, int edition, string press, bool isBest)
 {
     UpdateData(bookType, author, name, edition, press, isBest);
     UpdateViews();
 }
Esempio n. 3
0
 public EBookItem(TextBookType bookType, string author, string name, int edition, string press, bool isBest)
 {
     UpdateData(bookType, author, name, edition, press, isBest);
 }