示例#1
0
 public List <Verse> GetVerseList(Guid chapterId)
 {
     return(VerseManager.GetAllByChapter(chapterId));
 }
示例#2
0
 public JsonResult GetVerses(Guid chapterId)
 {
     return(Json(VerseManager.GetAllByChapter(chapterId)));
 }