public ValuesOfMonthWithCaching(DateTime dateOfMonth, IValuesOfMonth precedingMonth)
     : base(dateOfMonth, precedingMonth)
 {
 }
 public ValuesOfMonth(DateTime dateOfMonth, IValuesOfMonth precedingMonth)
 {
     this.month = new Month(dateOfMonth);
     this.precedingMonth = precedingMonth;
 }