public IEnumerable <GroupReportModel> GetGroupReportAllCollegeAllGroupWithScore(int?modelTermId, IEnumerable <int?> socreList)
        {
            var condition = socreList.Where(x => x.HasValue).ToArray();

            return(_repository.GetGroupReportAllCollegeAllGroupWithScore(modelTermId.Value, condition));
        }