Example #1
0
 public static List <AnalysisStudent> StudentOnlineDesc_Get(int OCID, string StartDate, string EndDate, int TopCount)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis {
         OCID = OCID, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate), TopCount = TopCount
     };
     return(new AnalysisBLL().StudentOnlineDesc_Get(model));
 }
Example #2
0
 public static AnalysisStudent LoginStudentRate_Get(int OCID, string StartDate, string EndDate)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis {
         OCID = OCID, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate)
     };
     return(new AnalysisBLL().LoginStudentRate_Get(model));
 }
Example #3
0
 public static List <AnalysisStudent> StudentLiveness_Get(int OCID, int TopCount)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis {
         OCID = OCID, TopCount = TopCount
     };
     return(new AnalysisBLL().StudentLiveness_Get(model));
 }
Example #4
0
 public static List <AnalysisStudent> OnLineStudentCount_Get(int OCID, int Type, string StartDate, string EndDate)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis {
         OCID = OCID, Type = Type, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate)
     };
     return(new AnalysisBLL().OnLineStudentCount_Get(model));
 }
Example #5
0
 public static AnalysisCourse MoocSummary_Get(int OCID, string StartDate, string EndDate)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis {
         OCID = OCID, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate)
     };
     return(new AnalysisBLL().MoocSummary_Get(model));
 }
Example #6
0
 public static AnalysisTeacher OCTeacherFocusAnalysis_Get(int OCID, int UserID, string StartDate, string EndDate)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis {
         OCID = OCID, UserID = UserID, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate)
     };
     return(new AnalysisBLL().OCTeacherFocusAnalysis_Get(model));
 }
Example #7
0
 public static List <AnalysisTeacher> OCTeacherLiveness_Get(int OCID, string StartDate, string EndDate)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis {
         OCID = OCID, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate)
     };
     return(new AnalysisBLL().OCTeacherLiveness_Get(model));
 }
Example #8
0
 public static AnalysisTeacher OCTeacherFocusAnalysis_Get(int OCID,int UserID, string StartDate, string EndDate)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis { OCID = OCID,UserID=UserID, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate) };
     return new AnalysisBLL().OCTeacherFocusAnalysis_Get(model);
 }
Example #9
0
 public static AnalysisCourse OCFCSummary_Get(int OCID, string StartDate, string EndDate)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis { OCID = OCID, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate) };
     return new AnalysisBLL().OCFCSummary_Get(model);
 }
Example #10
0
 public static AnalysisStudent LoginStudentRate_Get(int OCID, string StartDate, string EndDate)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis { OCID = OCID, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate)};
     return new AnalysisBLL().LoginStudentRate_Get(model);
 }
Example #11
0
 public static List<AnalysisStudent> StudentOnlineDesc_Get(int OCID, string StartDate, string EndDate, int TopCount)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis { OCID = OCID, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate), TopCount = TopCount };
     return new AnalysisBLL().StudentOnlineDesc_Get(model);
 }
Example #12
0
 public static List<AnalysisStudent> StudentLiveness_Get(int OCID,int TopCount)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis { OCID=OCID,TopCount=TopCount};
     return new AnalysisBLL().StudentLiveness_Get(model);
 }
Example #13
0
 public static List<AnalysisStudent> OnLineStudentCount_Get(int OCID, int Type, string StartDate, string EndDate)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis { OCID = OCID, Type = Type, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate) };
     return new AnalysisBLL().OnLineStudentCount_Get(model);
 }
Example #14
0
 public static List<AnalysisTeacher> OCTeacherWork_Get(int OCID, string StartDate,string EndDate)
 {
     IES.CC.Model.Analysis.Analysis model = new IES.CC.Model.Analysis.Analysis { OCID = OCID, StartDate = Convert.ToDateTime(StartDate), EndDate = Convert.ToDateTime(EndDate) };
     return new AnalysisBLL().OCTeacherWork_Get(model);
 }