private static DateSpecification IsMonth(string description, Func <DateTime, bool> monthSpec, Action <DaySpecs> daySpecs) { DateSpecification dc = new DateSpecification(description, monthSpec); var spec = new DaySpecs(); daySpecs(spec); spec.Configure(dc); return(dc); }
private static DateSpecification IsMonth(string description, Func<DateTime, bool> monthSpec, Action<DaySpecs> daySpecs) { DateSpecification dc = new DateSpecification(description, monthSpec); var spec = new DaySpecs(); daySpecs(spec); spec.Configure(dc); return dc; }