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

            return(_repository.GetGroupReportNotCollegeAllGroupWithScore(modelTermId.Value, condition, collegeList));
        }