PaulStovell.TrialBalance.DomainModel.Period.GetNext C# (CSharp) Method

GetNext() public method

Gets the next accounting period after this one.
public GetNext ( ) : Period
return Period
        public Period GetNext()
        {
            return CalculatePeriodForDate(this.StartDate.AddMonths((int) _length), this.StartDate, this.Length);
        }