/// <summary>
        /// 通过年份和大类统计申请书资助率
        /// </summary>
        /// <returns></returns>
        public StatisticByYearAndCate <double>[] GetFundRatioStatisticByYearAndCate(int startYear)
        {
            int instituteId = UserHelper.GetCurrentUser().InstId;

            StatisticByYearAndCate <double>[] statistic = _fundRepository.GetFundRatioStatisticByYearAndCate(startYear, instituteId).ToArray();
            return(statistic);
        }
Example #2
0
 /// <summary>
 /// 通过年份和大类统计申请书资助率
 /// </summary>
 /// <returns></returns>
 public StatisticByYearAndCate <double>[] GetFundRatioStatisticByYearAndCate(int startYear)
 {
     StatisticByYearAndCate <double>[] statistic = _fundRepository.GetFundRatioStatisticByYearAndCate(startYear).ToArray();
     return(statistic);
 }