main
 1using System;
 2using System.Collections.Generic;
 3
 4namespace solidware.financials.service.domain.payroll
 5{
 6    public interface Denominator
 7    {
 8        IEnumerable<int> each_possible_value();
 9        void each(Action<int> action);
10    }
11}