IAchievementService.cs 727 B

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