main
 1using Gorilla.Commons.Utility;
 2
 3namespace presentation.windows.server.domain.payroll
 4{
 5    public class Annually : Frequency
 6    {
 7        public Date next(Date from_date)
 8        {
 9            return from_date.plus_years(1);
10        }
11    }
12}