Commit 99c23aad authored by 黄奎's avatar 黄奎

页面修改

parent 464ea544
...@@ -31,12 +31,22 @@ namespace Edu.Module.Exam ...@@ -31,12 +31,22 @@ namespace Edu.Module.Exam
/// </summary> /// </summary>
private readonly RB_StuWords_ReviewRepository stuWords_ReviewRepository = new RB_StuWords_ReviewRepository(); private readonly RB_StuWords_ReviewRepository stuWords_ReviewRepository = new RB_StuWords_ReviewRepository();
/// <summary>
/// 学员单词测试仓储层对象
/// </summary>
private readonly RB_StuWords_ExamRepository stuWords_ExamRepository = new RB_StuWords_ExamRepository();
/// <summary>
/// 学员单词测试详情仓储层对象
/// </summary>
private readonly RB_StuWords_ExamDetailRepository stuWords_ExamDetailRepository = new RB_StuWords_ExamDetailRepository();
/// <summary> /// <summary>
/// 生成课程复习和预习单词 /// 生成课程复习和预习单词
/// </summary> /// </summary>
/// <param name="CourseId"></param> /// <param name="CourseId">课程编号</param>
/// <param name="ChapterId"></param> /// <param name="ChapterId">当前章节编号</param>
/// <param name="NextChapterId"></param> /// <param name="NextChapterId">下一章节编号</param>
/// <returns></returns> /// <returns></returns>
public object CreateCourseExamModule(int CourseId, int ChapterId, int NextChapterId) public object CreateCourseExamModule(int CourseId, int ChapterId, int NextChapterId)
{ {
...@@ -493,5 +503,16 @@ namespace Edu.Module.Exam ...@@ -493,5 +503,16 @@ namespace Edu.Module.Exam
} }
return flag; return flag;
} }
/// <summary>
/// 提交单词测试
/// </summary>
/// <returns></returns>
public bool SubmitStuWordsExamModule()
{
bool flag = false;
return flag;
}
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment