public AddBookPageRequest(int libraryId, int bookId, int?accountId, BookPageModel book) : base(libraryId) { AccountId = accountId; BookPage = book; BookPage.BookId = bookId; }
public UpdateBookPageRequest(int libraryId, int bookId, int sequenceNumber, int?accountId, BookPageModel book) : base(libraryId) { BookPage = book; BookPage.BookId = bookId; SequenceNumber = sequenceNumber; AccountId = accountId; }