Esempio n. 1
0
 public UpdateChapterRequest(int libraryId, int bookId, int chapterNumber, ChapterModel chapter)
     : base(libraryId, bookId)
 {
     ChapterNumber  = chapterNumber;
     Chapter        = chapter;
     Chapter.BookId = bookId;
 }
Esempio n. 2
0
 public AddChapterRequest(int libraryId, int bookId, int?accountId, ChapterModel chapter)
     : base(libraryId, bookId)
 {
     AccountId = accountId;
     Chapter   = chapter;
 }