IAchievementService.cs 679 B

123456789101112131415
  1. using System.Collections.Generic;
  2. using TEAMModelOS.SDK.Context.Configuration;
  3. using TEAMModelOS.Service.Models;
  4. namespace TEAMModelOS.Service.Analysis.Interfaces
  5. {
  6. public interface IAchievementService : IBusinessService
  7. {
  8. List<Dictionary<string, object>> GetPR(List<ExamResult> exams, List<List<double>> subSum,List<Student> students);
  9. Dictionary<string, object> GetAverage(List<ExamResult> exams,List<string> gav, List<string> cav, List<List<double>> subSum, List<Student> students);
  10. List<List<string>> ReName(List<List<string>> datas, List<string> ids,
  11. List<Dictionary<string, int[]>> classToName, List<Student> students);
  12. }
  13. }