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