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

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