Esempio n. 1
0
        public IEnumerable <HoleStatistics> GetHoleStatistics(int month, int year)
        {
            Check.Argument.IsNotZeroOrNegative(month, "month");
            Check.Argument.IsNotZeroOrNegative(year, "year");

            return(_holeStatisticsRepository.GetByMonthAndYear(month, year));
        }