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

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