예제 #1
0
        /// <summary>
        /// 统计本单位各个大类的年度经费变化
        /// </summary>
        /// <returns></returns>
        public StatisticByYearAndCate <double>[] GetFundStatisticByCateAndYear(int startYear)
        {
            int instituteId = UserHelper.GetCurrentUser().InstId;

            StatisticByYearAndCate <double>[] statistic = _fundRepository.GetFundStatisticByCateAndYear(startYear, instituteId).ToArray();
            return(statistic);
        }
예제 #2
0
 /// <summary>
 /// 统计各个大类的年度经费变化
 /// </summary>
 /// <returns></returns>
 public StatisticByYearAndCate <double>[] GetFundStatisticByCateAndYear(int startYear)
 {
     StatisticByYearAndCate <double>[] statistic = _fundRepository.GetFundStatisticByCateAndYear(startYear).ToArray();
     return(statistic);
 }