Пример #1
0
        public List <SeriesStatistics> SeriesStatistics()
        {
            var seasonStatistics = _seriesStatisticsRepository.SeriesStatistics();

            return(seasonStatistics.GroupBy(s => s.SeriesId).Select(s => MapSeriesStatistics(s.ToList())).ToList());
        }
Пример #2
0
 public List <SeriesStatistics> SeriesStatistics()
 {
     return(_seriesStatisticsRepository.SeriesStatistics());
 }