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