123456789101112131415 |
- using System.Collections.Generic;
- using TEAMModelOS.SDK.Context.Configuration;
- using TEAMModelOS.Service.Models;
- namespace TEAMModelOS.Service.Analysis.Interfaces
- {
- public interface IAchievementService : IBusinessService
- {
- List<Dictionary<string, object>> GetPR(List<ExamResult> exams, List<List<double>> subSum,List<Student> students);
- Dictionary<string, object> GetAverage(List<ExamResult> exams,List<string> gav, List<string> cav, List<List<double>> subSum, List<Student> students);
- List<List<string>> ReName(List<List<string>> datas, List<string> ids,
- List<Dictionary<string, int[]>> classToName, List<Student> students);
- }
- }
|