Exemplo n.º 1
0
        public IEnumerable<Reward> CalculateRewards(DateRange period)
        {
            if(period == null)
            {
                throw new ArgumentNullException("period");
            }

            // TODO: reward calculation (see unit test project for specification).

            return null;
        }
Exemplo n.º 2
0
 public bool Contains(DateRange range)
 {
     return Contains(range.StartDate) && Contains(range.EndDate);
 }