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

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