コード例 #1
0
 public static Chapter GetChapter(String bookID, String chapterID)
 {
     return(ChaptersOnDeviceDataAccessor.GetChapter(bookID, chapterID));
 }
コード例 #2
0
 public static void UpdateChapters(String bookID, List <Chapter> chapterList)
 {
     ChaptersOnDeviceDataAccessor.UpdateChapters(bookID, chapterList);
 }
コード例 #3
0
 public static List <Chapter> GetChapters(String bookID)
 {
     return(ChaptersOnDeviceDataAccessor.GetChapters(bookID));
 }
コード例 #4
0
 public static void RemoveChapters(String bookID)
 {
     ChaptersOnDeviceDataAccessor.RemoveChapters(bookID);
 }