public async Task <PercentageTotalBarChartModel> BySpecialEducation(AssessmentFilterModel model)
        {
            model.ExcludePerformanceKeys = await GetPerformanceKeys(model);

            var chart = await _assessmentPerformanceTrendService.BySpecialEducation(model);

            chart.HideTotal = true;
            return(chart);
        }
        public async Task <IHttpActionResult> BySpecialEducation(AssessmentFilterModel model)
        {
            var chart = await _assessmentPerformanceTrendService.BySpecialEducation(model);

            return(Ok(chart));
        }