예제 #1
0
 public List <Chapter> Chapter_List(int OCID)
 {
     return(ChapterDAL.Chapter_List(new Chapter()
     {
         OCID = OCID
     }));
 }
예제 #2
0
 public bool Chapter_Del(Chapter model)
 {
     return(ChapterDAL.Chapter_Del(model));
 }
예제 #3
0
 public bool Chapter_Upd(Chapter model)
 {
     return(ChapterDAL.Chapter_Upd(model));
 }
예제 #4
0
 public bool Chapter_Move(int chapterID, string direction)
 {
     return(ChapterDAL.Chapter_Move(chapterID, direction));
 }
예제 #5
0
 public Chapter Chapter_ADD(Chapter model)
 {
     return(ChapterDAL.Chapter_ADD(model));
 }
예제 #6
0
 public List <Chapter> Chapter_ExerciseCount_List(int OCID, int UserID, int ExerciseType, int Diffcult)
 {
     return(ChapterDAL.Chapter_ExerciseCount_List(OCID, UserID, ExerciseType, Diffcult));
 }
예제 #7
0
 public IList <Exercise> Chapter_Exercise_List(Chapter chapter, Ken ken)
 {
     return(ChapterDAL.Chapter_Exercise_List(chapter, ken));
 }
예제 #8
0
 public List <IES.Resource.Model.Exercise> Exercise_ChapterID_KenID_List(Chapter chapter, Ken ken)
 {
     return(ChapterDAL.Exercise_ChapterID_KenID_List(chapter, ken));
 }
예제 #9
0
 public List <IES.Resource.Model.File> File_ChapterID_KenID_List(Chapter chapter, Ken ken)
 {
     return(ChapterDAL.File_ChapterID_KenID_List(chapter, ken));
 }
예제 #10
0
 public IList <Chapter> Chapter_List(Chapter model)
 {
     return(ChapterDAL.Chapter_List(model));
 }
예제 #11
0
 public List <Ken> Chapter_Ken_List(Chapter model)
 {
     return(ChapterDAL.Chapter_Ken_List(model));
 }